Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
6a2638b1
Commit
6a2638b1
authored
Mar 28, 2011
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct handling of functions with only kwarg args in getcallargs (closes #11256)
A patch from Daniel Urban.
parent
3077404d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
44 additions
and
2 deletions
+44
-2
Lib/inspect.py
Lib/inspect.py
+8
-2
Lib/test/test_inspect.py
Lib/test/test_inspect.py
+33
-0
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/inspect.py
View file @
6a2638b1
...
...
@@ -944,8 +944,14 @@ def getcallargs(func, *positional, **named):
f_name
,
'at most'
if
defaults
else
'exactly'
,
num_args
,
'arguments'
if
num_args
>
1
else
'argument'
,
num_total
))
elif
num_args
==
0
and
num_total
:
raise
TypeError
(
'%s() takes no arguments (%d given)'
%
(
f_name
,
num_total
))
if
varkw
or
kwonlyargs
:
if
num_pos
:
# XXX: We should use num_pos, but Python also uses num_total:
raise
TypeError
(
'%s() takes exactly 0 positional arguments '
'(%d given)'
%
(
f_name
,
num_total
))
else
:
raise
TypeError
(
'%s() takes no arguments (%d given)'
%
(
f_name
,
num_total
))
for
arg
in
itertools
.
chain
(
args
,
kwonlyargs
):
if
arg
in
named
:
...
...
Lib/test/test_inspect.py
View file @
6a2638b1
...
...
@@ -632,6 +632,16 @@ class TestGetcallargsFunctions(unittest.TestCase):
self
.
assertEqualCallArgs
(
f
,
'2, c=4, **collections.UserDict(b=3)'
)
self
.
assertEqualCallArgs
(
f
,
'b=2, **collections.UserDict(a=3, c=4)'
)
def
test_varkw_only
(
self
):
# issue11256:
f
=
self
.
makeCallable
(
'**c'
)
self
.
assertEqualCallArgs
(
f
,
''
)
self
.
assertEqualCallArgs
(
f
,
'a=1'
)
self
.
assertEqualCallArgs
(
f
,
'a=1, b=2'
)
self
.
assertEqualCallArgs
(
f
,
'c=3, **{"a": 1, "b": 2}'
)
self
.
assertEqualCallArgs
(
f
,
'**collections.UserDict(a=1, b=2)'
)
self
.
assertEqualCallArgs
(
f
,
'c=3, **collections.UserDict(a=1, b=2)'
)
def
test_keyword_only
(
self
):
f
=
self
.
makeCallable
(
'a=3, *, c, d=2'
)
self
.
assertEqualCallArgs
(
f
,
'c=3'
)
...
...
@@ -643,6 +653,11 @@ class TestGetcallargsFunctions(unittest.TestCase):
self
.
assertEqualException
(
f
,
'a=3'
)
self
.
assertEqualException
(
f
,
'd=4'
)
f
=
self
.
makeCallable
(
'*, c, d=2'
)
self
.
assertEqualCallArgs
(
f
,
'c=3'
)
self
.
assertEqualCallArgs
(
f
,
'c=3, d=4'
)
self
.
assertEqualCallArgs
(
f
,
'd=4, c=3'
)
def
test_multiple_features
(
self
):
f
=
self
.
makeCallable
(
'a, b=2, *f, **g'
)
self
.
assertEqualCallArgs
(
f
,
'2, 3, 7'
)
...
...
@@ -656,6 +671,17 @@ class TestGetcallargsFunctions(unittest.TestCase):
'(4,[5,6])]), **collections.UserDict('
'y=9, z=10)'
)
f
=
self
.
makeCallable
(
'a, b=2, *f, x, y=99, **g'
)
self
.
assertEqualCallArgs
(
f
,
'2, 3, x=8'
)
self
.
assertEqualCallArgs
(
f
,
'2, 3, x=8, *[(4,[5,6]), 7]'
)
self
.
assertEqualCallArgs
(
f
,
'2, x=8, *[3, (4,[5,6]), 7], y=9, z=10'
)
self
.
assertEqualCallArgs
(
f
,
'x=8, *[2, 3, (4,[5,6])], y=9, z=10'
)
self
.
assertEqualCallArgs
(
f
,
'x=8, *collections.UserList('
'[2, 3, (4,[5,6])]), q=0, **{"y":9, "z":10}'
)
self
.
assertEqualCallArgs
(
f
,
'2, x=8, *collections.UserList([3, '
'(4,[5,6])]), q=0, **collections.UserDict('
'y=9, z=10)'
)
def
test_errors
(
self
):
f0
=
self
.
makeCallable
(
''
)
f1
=
self
.
makeCallable
(
'a, b'
)
...
...
@@ -692,6 +718,13 @@ class TestGetcallargsFunctions(unittest.TestCase):
# - for functions and bound methods: unexpected keyword 'c'
# - for unbound methods: multiple values for keyword 'a'
#self.assertEqualException(f, '1, c=3, a=2')
# issue11256:
f3
=
self
.
makeCallable
(
'**c'
)
self
.
assertEqualException
(
f3
,
'1, 2'
)
self
.
assertEqualException
(
f3
,
'1, 2, a=1, b=2'
)
f4
=
self
.
makeCallable
(
'*, a, b=0'
)
self
.
assertEqualException
(
f3
,
'1, 2'
)
self
.
assertEqualException
(
f3
,
'1, 2, a=1, b=2'
)
class
TestGetcallargsMethods
(
TestGetcallargsFunctions
):
...
...
Misc/NEWS
View file @
6a2638b1
...
...
@@ -49,6 +49,9 @@ Core and Builtins
Library
-------
-
Issue
#
11256
:
Fix
inspect
.
getcallargs
on
functions
that
take
only
keyword
arguments
.
-
Issue
#
11696
:
Fix
ID
generation
in
msilib
.
-
Issue
#
9696
:
Fix
exception
incorrectly
raised
by
xdrlib
.
Packer
.
pack_int
when
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment