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
96c7c068
Commit
96c7c068
authored
Jun 15, 2017
by
Sylvain
Committed by
Serhiy Storchaka
Jun 15, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-20627: Fix error message when keyword arguments are used (#2115)
parent
8acb4cf2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
48 additions
and
14 deletions
+48
-14
Lib/test/test_call.py
Lib/test/test_call.py
+26
-0
Modules/_hashopenssl.c
Modules/_hashopenssl.c
+2
-2
Modules/_struct.c
Modules/_struct.c
+14
-6
Python/bltinmodule.c
Python/bltinmodule.c
+6
-6
No files found.
Lib/test/test_call.py
View file @
96c7c068
...
...
@@ -5,6 +5,8 @@ try:
import
_testcapi
except
ImportError
:
_testcapi
=
None
import
struct
import
collections
# The test cases here cover several paths through the function calling
# code. They depend on the METH_XXX flag that is used to define a C
...
...
@@ -160,6 +162,30 @@ class CFunctionCallsErrorMessages(unittest.TestCase):
msg = r"
^
hasattr
\
(
\
)
takes
no
keyword
arguments
$
"
self.assertRaisesRegex(TypeError, msg, hasattr, x=2)
def test_varargs6_kw(self):
msg = r"
^
getattr
\
(
\
)
takes
no
keyword
arguments
$
"
self.assertRaisesRegex(TypeError, msg, getattr, x=2)
def test_varargs7_kw(self):
msg = r"
^
next
\
(
\
)
takes
no
keyword
arguments
$
"
self.assertRaisesRegex(TypeError, msg, next, x=2)
def test_varargs8_kw(self):
msg = r"
^
pack
\
(
\
)
takes
no
keyword
arguments
$
"
self.assertRaisesRegex(TypeError, msg, struct.pack, x=2)
def test_varargs9_kw(self):
msg = r"
^
pack_into
\
(
\
)
takes
no
keyword
arguments
$
"
self.assertRaisesRegex(TypeError, msg, struct.pack_into, x=2)
def test_varargs10_kw(self):
msg = r"
^
index
\
(
\
)
takes
no
keyword
arguments
$
"
self.assertRaisesRegex(TypeError, msg, collections.deque().index, x=2)
def test_varargs11_kw(self):
msg = r"
^
pack
\
(
\
)
takes
no
keyword
arguments
$
"
self.assertRaisesRegex(TypeError, msg, struct.Struct.pack, struct.Struct(""), x=2)
def test_oldargs0_1(self):
msg = r"
keys
\
(
\
)
takes
no
arguments
\
(
1
given
\
)
"
self.assertRaisesRegex(TypeError, msg, {}.keys, 0)
...
...
Modules/_hashopenssl.c
View file @
96c7c068
...
...
@@ -931,11 +931,11 @@ generate_hash_name_list(void)
Py_buffer view = { 0 }; \
PyObject *ret_obj; \
\
if (!_PyArg_
ParseStack(args, nargs, "|O:" #NAME , &data_obj
)) { \
if (!_PyArg_
NoStackKeywords(#NAME, kwnames
)) { \
return NULL; \
} \
\
if (!_PyArg_
NoStackKeywords(#NAME, kwnames
)) { \
if (!_PyArg_
ParseStack(args, nargs, "|O:" #NAME , &data_obj
)) { \
return NULL; \
} \
\
...
...
Modules/_struct.c
View file @
96c7c068
...
...
@@ -1823,6 +1823,9 @@ s_pack(PyObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
PyObject
*
result
;
/* Validate arguments. */
if
(
!
_PyArg_NoStackKeywords
(
"pack"
,
kwnames
))
{
return
NULL
;
}
soself
=
(
PyStructObject
*
)
self
;
assert
(
PyStruct_Check
(
self
));
assert
(
soself
->
s_codes
!=
NULL
);
...
...
@@ -1832,9 +1835,6 @@ s_pack(PyObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
"pack expected %zd items for packing (got %zd)"
,
soself
->
s_len
,
nargs
);
return
NULL
;
}
if
(
!
_PyArg_NoStackKeywords
(
"pack"
,
kwnames
))
{
return
NULL
;
}
/* Allocate a new buffer */
result
=
PyBytes_FromStringAndSize
((
char
*
)
NULL
,
soself
->
s_size
);
...
...
@@ -1866,6 +1866,9 @@ s_pack_into(PyObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames
Py_ssize_t
offset
;
/* Validate arguments. +1 is for the first arg as buffer. */
if
(
!
_PyArg_NoStackKeywords
(
"pack_into"
,
kwnames
))
{
return
NULL
;
}
soself
=
(
PyStructObject
*
)
self
;
assert
(
PyStruct_Check
(
self
));
assert
(
soself
->
s_codes
!=
NULL
);
...
...
@@ -1886,9 +1889,6 @@ s_pack_into(PyObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames
}
return
NULL
;
}
if
(
!
_PyArg_NoStackKeywords
(
"pack_into"
,
kwnames
))
{
return
NULL
;
}
/* Extract a writable memory buffer from the first argument */
if
(
!
PyArg_Parse
(
args
[
0
],
"w*"
,
&
buffer
))
...
...
@@ -2131,6 +2131,10 @@ pack(PyObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
PyObject
*
s_object
=
NULL
;
PyObject
*
format
,
*
result
;
if
(
!
_PyArg_NoStackKeywords
(
"pack"
,
kwnames
))
{
return
NULL
;
}
if
(
nargs
==
0
)
{
PyErr_SetString
(
PyExc_TypeError
,
"missing format argument"
);
return
NULL
;
...
...
@@ -2159,6 +2163,10 @@ pack_into(PyObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
PyObject
*
s_object
=
NULL
;
PyObject
*
format
,
*
result
;
if
(
!
_PyArg_NoStackKeywords
(
"pack_into"
,
kwnames
))
{
return
NULL
;
}
if
(
nargs
==
0
)
{
PyErr_SetString
(
PyExc_TypeError
,
"missing format argument"
);
return
NULL
;
...
...
Python/bltinmodule.c
View file @
96c7c068
...
...
@@ -997,13 +997,13 @@ builtin_getattr(PyObject *self, PyObject **args, Py_ssize_t nargs,
PyObject
*
v
,
*
result
,
*
dflt
=
NULL
;
PyObject
*
name
;
if
(
!
_PyArg_UnpackStack
(
args
,
nargs
,
"getattr"
,
2
,
3
,
&
v
,
&
name
,
&
dflt
))
return
NULL
;
if
(
!
_PyArg_NoStackKeywords
(
"getattr"
,
kwnames
))
{
return
NULL
;
}
if
(
!
_PyArg_UnpackStack
(
args
,
nargs
,
"getattr"
,
2
,
3
,
&
v
,
&
name
,
&
dflt
))
return
NULL
;
if
(
!
PyUnicode_Check
(
name
))
{
PyErr_SetString
(
PyExc_TypeError
,
"getattr(): attribute name must be string"
);
...
...
@@ -1307,13 +1307,13 @@ builtin_next(PyObject *self, PyObject **args, Py_ssize_t nargs,
PyObject
*
it
,
*
res
;
PyObject
*
def
=
NULL
;
if
(
!
_PyArg_UnpackStack
(
args
,
nargs
,
"next"
,
1
,
2
,
&
it
,
&
def
))
return
NULL
;
if
(
!
_PyArg_NoStackKeywords
(
"next"
,
kwnames
))
{
return
NULL
;
}
if
(
!
_PyArg_UnpackStack
(
args
,
nargs
,
"next"
,
1
,
2
,
&
it
,
&
def
))
return
NULL
;
if
(
!
PyIter_Check
(
it
))
{
PyErr_Format
(
PyExc_TypeError
,
"'%.200s' object is not an iterator"
,
...
...
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