mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
("Forward-port" of r46506)
Remove various dependencies on dictionary order in the standard library tests, and one (clearly an oversight, potentially critical) in the standard library itself - base64.py. Remaining open issues: * test_extcall is an output test, messy to make robust * tarfile.py has a potential bug here, but I'm not familiar enough with this code. Filed in as SF bug #1496501. * urllib2.HTTPPasswordMgr() returns a random result if there is more than one matching root path. I'm asking python-dev for clarification...
This commit is contained in:
parent
e9eeab5c05
commit
a3f092751a
8 changed files with 24 additions and 16 deletions
|
|
@ -1053,8 +1053,8 @@ libreftest = """ Doctest for examples in the library reference: libweakref.tex
|
|||
...
|
||||
>>> obj = Dict(red=1, green=2, blue=3) # this object is weak referencable
|
||||
>>> r = weakref.ref(obj)
|
||||
>>> print r()
|
||||
{'blue': 3, 'green': 2, 'red': 1}
|
||||
>>> print r() is obj
|
||||
True
|
||||
|
||||
>>> import weakref
|
||||
>>> class Object:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue