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
a3e1e4cd
Commit
a3e1e4cd
authored
Mar 06, 2003
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SF patch #693753: fix for bug 639806: default for dict.pop
(contributed by Michael Stone.)
parent
2b482134
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
51 additions
and
11 deletions
+51
-11
Doc/lib/libstdtypes.tex
Doc/lib/libstdtypes.tex
+7
-3
Lib/UserDict.py
Lib/UserDict.py
+12
-4
Lib/test/test_types.py
Lib/test/test_types.py
+5
-1
Lib/test/test_userdict.py
Lib/test/test_userdict.py
+6
-0
Misc/NEWS
Misc/NEWS
+6
-0
Objects/dictobject.c
Objects/dictobject.c
+15
-3
No files found.
Doc/lib/libstdtypes.tex
View file @
a3e1e4cd
...
...
@@ -1104,9 +1104,10 @@ arbitrary objects):
{
\code
{
\var
{
a
}
[
\var
{
k
}
]
}
if
\code
{
\var
{
k
}
in
\var
{
a
}}
,
else
\var
{
x
}
(also setting it)
}
{
(5)
}
\lineiii
{
\var
{
a
}
.pop(
\var
{
k
}
)
}
{
remove specified
\var
{
key
}
and return corresponding
\var
{
value
}}
{}
\lineiii
{
\var
{
a
}
.pop(
\var
{
k
}
\optional
{
,
\var
{
x
}}
)
}
{
\code
{
\var
{
a
}
[
\var
{
k
}
]
}
if
\code
{
\var
{
k
}
in
\var
{
a
}}
,
else
\var
{
x
}
(and remove k)
}
{
(8)
}
\lineiii
{
\var
{
a
}
.popitem()
}
{
remove and return an arbitrary (
\var
{
key
}
,
\var
{
value
}
) pair
}
{
(6)
}
...
...
@@ -1155,6 +1156,9 @@ over a dictionary, as often used in set algorithms.
\item
[(7)]
\function
{
fromkeys()
}
is a class method that returns a
new dictionary.
\var
{
value
}
defaults to
\code
{
None
}
.
\versionadded
{
2.3
}
\item
[(8)]
\function
{
pop()
}
raises a
\exception
{
KeyError
}
when no default
value is given and the key is not found.
\versionadded
{
2.3
}
\end{description}
...
...
Lib/UserDict.py
View file @
a3e1e4cd
...
...
@@ -55,8 +55,8 @@ class UserDict:
if
not
self
.
has_key
(
key
):
self
[
key
]
=
failobj
return
self
[
key
]
def
pop
(
self
,
key
):
return
self
.
data
.
pop
(
key
)
def
pop
(
self
,
key
,
*
args
):
return
self
.
data
.
pop
(
key
,
*
args
)
def
popitem
(
self
):
return
self
.
data
.
popitem
()
def
__contains__
(
self
,
key
):
...
...
@@ -117,8 +117,16 @@ class DictMixin:
except
KeyError
:
self
[
key
]
=
default
return
default
def
pop
(
self
,
key
):
def
pop
(
self
,
key
,
*
args
):
if
len
(
args
)
>
1
:
raise
TypeError
,
"pop expected at most 2 arguments, got "
\
+
repr
(
1
+
len
(
args
))
try
:
value
=
self
[
key
]
except
KeyError
:
if
args
:
return
args
[
0
]
raise
del
self
[
key
]
return
value
def
popitem
(
self
):
...
...
Lib/test/test_types.py
View file @
a3e1e4cd
...
...
@@ -647,6 +647,10 @@ h = {x: 'anything', y: 'something else'}
if
h
[
x
]
!=
h
[
y
]:
raise
TestFailed
,
"long/int key should match"
if
d
.
pop
(
k
,
v
)
!=
v
:
raise
TestFailed
,
"{}.pop(k, v) doesn't return default value"
d
[
k
]
=
v
if
d
.
pop
(
k
,
1
)
!=
v
:
raise
TestFailed
,
"{}.pop(k, v) doesn't find known key/value pair"
d
[
1
]
=
1
try
:
for
i
in
d
:
...
...
Lib/test/test_userdict.py
View file @
a3e1e4cd
...
...
@@ -139,6 +139,9 @@ class UserDictTest(unittest.TestCase):
t
=
UserDict
.
UserDict
(
x
=
42
)
self
.
assertEqual
(
t
.
pop
(
"x"
),
42
)
self
.
assertRaises
(
KeyError
,
t
.
pop
,
"x"
)
self
.
assertEqual
(
t
.
pop
(
"x"
,
1
),
1
)
t
[
"x"
]
=
42
self
.
assertEqual
(
t
.
pop
(
"x"
,
1
),
42
)
# Test popitem
t
=
UserDict
.
UserDict
(
x
=
42
)
...
...
@@ -242,6 +245,9 @@ class UserDictMixinTest(unittest.TestCase):
self
.
assertEqual
(
s
.
pop
(
10
),
'ten'
)
self
.
assert_
(
10
not
in
s
)
s
[
10
]
=
'ten'
self
.
assertEqual
(
s
.
pop
(
"x"
,
1
),
1
)
s
[
"x"
]
=
42
self
.
assertEqual
(
s
.
pop
(
"x"
,
1
),
42
)
# popitem
k
,
v
=
s
.
popitem
()
...
...
Misc/NEWS
View file @
a3e1e4cd
...
...
@@ -12,6 +12,12 @@ What's New in Python 2.3 beta 1?
Core and builtins
-----------------
- dict.pop now takes an optional argument specifying a default
value to return if the key is not in the dict. If a default is not
given and the key is not found, a KeyError will still be raised.
Parallel changes were made to UserDict.UserDict and UserDict.DictMixin.
[SF patch #693753] (contributed by Michael Stone.)
- sys.getfilesystemencoding() was added to expose
Py_FileSystemDefaultEncoding.
...
...
Objects/dictobject.c
View file @
a3e1e4cd
...
...
@@ -1544,13 +1544,20 @@ dict_clear(register dictobject *mp)
}
static
PyObject
*
dict_pop
(
dictobject
*
mp
,
PyObject
*
key
)
dict_pop
(
dictobject
*
mp
,
PyObject
*
args
)
{
long
hash
;
dictentry
*
ep
;
PyObject
*
old_value
,
*
old_key
;
PyObject
*
key
,
*
deflt
=
NULL
;
if
(
!
PyArg_UnpackTuple
(
args
,
"pop"
,
1
,
2
,
&
key
,
&
deflt
))
return
NULL
;
if
(
mp
->
ma_used
==
0
)
{
if
(
deflt
)
{
Py_INCREF
(
deflt
);
return
deflt
;
}
PyErr_SetString
(
PyExc_KeyError
,
"pop(): dictionary is empty"
);
return
NULL
;
...
...
@@ -1563,6 +1570,10 @@ dict_pop(dictobject *mp, PyObject *key)
}
ep
=
(
mp
->
ma_lookup
)(
mp
,
key
,
hash
);
if
(
ep
->
me_value
==
NULL
)
{
if
(
deflt
)
{
Py_INCREF
(
deflt
);
return
deflt
;
}
PyErr_SetObject
(
PyExc_KeyError
,
key
);
return
NULL
;
}
...
...
@@ -1719,7 +1730,8 @@ PyDoc_STRVAR(setdefault_doc__,
"D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D"
);
PyDoc_STRVAR
(
pop__doc__
,
"D.pop(k) -> v, remove specified key and return the corresponding value"
);
"D.pop(k[,d]) -> v, remove specified key and return the corresponding value
\n
\
If key is not found, d is returned if given, otherwise KeyError is raised"
);
PyDoc_STRVAR
(
popitem__doc__
,
"D.popitem() -> (k, v), remove and return some (key, value) pair as a
\n
\
...
...
@@ -1763,7 +1775,7 @@ static PyMethodDef mapp_methods[] = {
get__doc__
},
{
"setdefault"
,
(
PyCFunction
)
dict_setdefault
,
METH_VARARGS
,
setdefault_doc__
},
{
"pop"
,
(
PyCFunction
)
dict_pop
,
METH_
O
,
{
"pop"
,
(
PyCFunction
)
dict_pop
,
METH_
VARARGS
,
pop__doc__
},
{
"popitem"
,
(
PyCFunction
)
dict_popitem
,
METH_NOARGS
,
popitem__doc__
},
...
...
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