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
f609654b
Commit
f609654b
authored
Nov 17, 2010
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
handle dict subclasses gracefully in PyArg_ValidateKeywordArguments
parent
12ae290b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
6 deletions
+14
-6
Lib/test/test_dict.py
Lib/test/test_dict.py
+7
-4
Misc/NEWS
Misc/NEWS
+5
-0
Objects/dictobject.c
Objects/dictobject.c
+1
-1
Python/getargs.c
Python/getargs.c
+1
-1
No files found.
Lib/test/test_dict.py
View file @
f609654b
...
...
@@ -8,10 +8,13 @@ import gc, weakref
class
DictTest
(
unittest
.
TestCase
):
def
test_invalid_keyword_arguments
(
self
):
with
self
.
assertRaises
(
TypeError
):
dict
(
**
{
1
:
2
})
with
self
.
assertRaises
(
TypeError
):
{}.
update
(
**
{
1
:
2
})
class
Custom
(
dict
):
pass
for
invalid
in
{
1
:
2
},
Custom
({
1
:
2
}):
with
self
.
assertRaises
(
TypeError
):
dict
(
**
invalid
)
with
self
.
assertRaises
(
TypeError
):
{}.
update
(
**
invalid
)
def
test_constructor
(
self
):
# calling built-in types without argument must return empty
...
...
Misc/NEWS
View file @
f609654b
...
...
@@ -26,6 +26,11 @@ Library
- Issue #10429: IMAP.starttls() stored the capabilities as bytes objects,
rather than strings.
C-API
-----
- Loosen PyArg_ValidateKeywordArguments to allow dict subclasses.
What's New in Python 3.2 Alpha 4?
=================================
...
...
Objects/dictobject.c
View file @
f609654b
...
...
@@ -454,7 +454,7 @@ _PyDict_HasOnlyStringKeys(PyObject *dict)
{
Py_ssize_t
pos
=
0
;
PyObject
*
key
,
*
value
;
assert
(
PyDict_Check
Exact
(
dict
));
assert
(
PyDict_Check
(
dict
));
/* Shortcut */
if
(((
PyDictObject
*
)
dict
)
->
ma_lookup
==
lookdict_unicode
)
return
1
;
...
...
Python/getargs.c
View file @
f609654b
...
...
@@ -1394,7 +1394,7 @@ _PyArg_VaParseTupleAndKeywords_SizeT(PyObject *args,
int
PyArg_ValidateKeywordArguments
(
PyObject
*
kwargs
)
{
if
(
!
PyDict_Check
Exact
(
kwargs
))
{
if
(
!
PyDict_Check
(
kwargs
))
{
PyErr_BadInternalCall
();
return
0
;
}
...
...
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