index
:
cpython
3.10
3.11
3.12
3.13
3.14
3.9
main
The Python programming language
Aslak Raanes
about
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
Lib
/
test
/
mapping_tests.py
Commit message (
Expand
)
Author
Age
*
gh-127146: Emscripten: Skip segfaults in test suite (#127151)
Hood Chatham
2024-12-05
*
gh-116303: Skip tests if C recursion limit is unavailable (GH-117368)
Erlend E. Aasland
2024-04-08
*
gh-109653: Remove unused imports in the `Lib/` directory (#109803)
Alex Waygood
2023-09-24
*
GH-91079: Rename C_RECURSION_LIMIT to Py_C_RECURSION_LIMIT (#108507)
Victor Stinner
2023-09-08
*
GH-107263: Increase C stack limit for most functions, except `_PyEval_EvalFra...
Mark Shannon
2023-08-04
*
bpo-2661: Make mapping tests better usable for custom mapping classes. (GH-11...
Walter Dörwald
2019-06-06
*
bpo-32137: The repr of deeply nested dict now raises a RecursionError (#4570)
Serhiy Storchaka
2017-12-03
*
Issue #23641: Cleaned out legacy dunder names from tests and docs.
Serhiy Storchaka
2015-03-12
*
Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...
Georg Brandl
2012-02-20
|
\
|
*
Issue #13703: add a way to randomize the hash values of basic types (str, byt...
Georg Brandl
2012-02-20
|
*
Merged revisions 73715 via svnmerge from
Georg Brandl
2009-08-13
*
|
Merged revisions 77727 via svnmerge from
Ezio Melotti
2010-01-24
*
|
use assert[Not]In where appropriate
Ezio Melotti
2010-01-23
*
|
Issue #7435: Remove duplicate int/long tests, and other
Mark Dickinson
2009-12-05
*
|
convert old fail* assertions to assert*
Benjamin Peterson
2009-06-30
|
/
*
Migrate remaining tests from UserDict.UserDict to collections.UserDict.
Raymond Hettinger
2008-02-06
*
PEP 3114: rename .next() to .__next__() and add next() builtin.
Georg Brandl
2007-04-21
*
Fix test_os from breakage due to dict views.
Brett Cannon
2007-02-21
*
Fix the damage to UserDict and its tests.
Guido van Rossum
2007-02-15
*
Nailed test_weakref.py. Pfew, messy!
Guido van Rossum
2007-02-11
*
- PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;
Guido van Rossum
2007-02-11
*
Rip out 'long' and 'L'-suffixed integer literals.
Guido van Rossum
2007-01-15
*
Restructure comparison dramatically. There is no longer a default
Guido van Rossum
2006-08-24
*
Change the way __hash__ is inherited; when __eq__ or __cmp__ is overridden
Guido van Rossum
2006-08-21
*
Get rid of dict.has_key(). Boy this has a lot of repercussions!
Guido van Rossum
2006-08-18
*
Rename class attribute containing the class to be tested, so the name is the
Walter Dörwald
2004-06-02
*
Port the dictionary tests from test_types.py to unittest. Collect as much
Walter Dörwald
2004-05-31