aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_class.py
Commit message (Expand)AuthorAge
* GH-130396: Use computed stack limits on linux (GH-130398)Mark Shannon2025-02-25
* gh-127933: Add option to run regression tests in parallel (gh-128003)Sam Gross2025-02-04
* gh-127146: Emscripten: Skip segfaults in test suite (#127151)Hood Chatham2024-12-05
* gh-60712: Include the "object" type in the lists of documented types (GH-103036)Furkan Onder2024-10-30
* gh-124722: Fix leak in `test_detach_materialized_dict_no_memory` (GH-124769)sobolevn2024-09-29
* GH-124547: Clear instance dictionary if memory error occurs during object dea...Mark Shannon2024-09-27
* Fix typos (#123775)algonell2024-09-09
* GH-123185: Check for `NULL` after calling `_PyEvalFramePushAndInit` (GH-123194)Mark Shannon2024-08-21
* gh-121860: Fix crash when materializing managed dict (#121866)Sam Gross2024-07-16
* gh-118362: Fix thread safety around lookups from the type cache in the face o...Dino Viehland2024-05-06
* gh-112075: Make instance attributes stored in inline "dict" thread safe (#114...Dino Viehland2024-04-21
* GH-117750: When clearing object's dict, clear inline values but leave dict at...Mark Shannon2024-04-15
* GH-115776: Embed the values array into the object, for "normal" Python object...Mark Shannon2024-04-02
* gh-94808:Improve coverage of PyObject_Print (GH-98749)MonadChains2024-04-01
* gh-116417: Move limited C API abstract.c tests to _testlimitedcapi (#116986)Victor Stinner2024-03-19
* GH-114806. Don't specialize calls to classes with metaclasses. (GH-114870)Mark Shannon2024-02-01
* gh-107178: Add the C API tests for the Abstract Objects Layer (GH-107179)Serhiy Storchaka2023-08-07
* gh-96663: Add a better error message for __dict__-less classes setattr (#103232)James Hilton-Balfe2023-07-21
* GH-106057: Handle recursion errors in inline class calls properly. (GH-106108)Mark Shannon2023-07-07
* gh-102799: use sys.exception() instead of sys.exc_info() in tests (#103293)Irit Katriel2023-04-06
* gh-94808: Add test coverage for PyObject_HasAttrString (#96627)MonadChains2022-10-03
* bpo-43857: Improve the AttributeError message when deleting a missing attribu...Géry Ogam2022-05-05
* bpo-46161: Fix bug in starunpack_helper in compile.c (GH-30235)zq19972022-01-17
* Remove binding of captured exceptions when not used to reduce the chances of ...Pablo Galindo2019-11-19
* bpo-31506: Clarify error messages for object.__new__ and object.__init__ (GH-...Sanyam Khurana2019-02-19
* bpo-1617161: Make the hash and equality of methods not depending on the value...Serhiy Storchaka2018-07-31
* bpo-32297: Few misspellings found in Python source code comments. (#4803)Mike2017-12-14
* bpo-31506: Improve the error message logic for class instantiation (GH-4740)Sanyam Khurana2017-12-10
* bpo-25794: Fix `type.__setattr__()` for non-interned attribute names. (#1652)Serhiy Storchaka2017-05-20
* Backed out changeset af29d89083b3 (closes #25548) (closes #27498)Benjamin Peterson2016-07-13
* Issue #25548: Showing memory address of class objects in replKushal Das2016-06-04
* Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.Yury Selivanov2015-07-03
* Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-13
* Issue #23641: Cleaned out legacy dunder names from tests and docs.Serhiy Storchaka2015-03-12
|\
| * Issue #23641: Cleaned out legacy dunder names from tests and docs.Serhiy Storchaka2015-03-12
|/
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-20
* remove some more references to __cmp__ #1717Benjamin Peterson2008-10-16
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-20
* Merged revisions 60990-61002 via svnmerge fromChristian Heimes2008-02-23
* Patch from Georg Brandl and me for #1493Christian Heimes2007-11-25
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-30
* Merge the trunk changes in. Breaks socket.ssl for now.Thomas Wouters2007-08-28
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-13
* * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes.Georg Brandl2007-02-09
* Fix most trivially-findable print statements.Guido van Rossum2007-02-09
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-15
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-10
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-13
* Patch #1550800: make exec a function.Georg Brandl2006-09-06
* Killed the <> operator. You must now use !=.Guido van Rossum2006-08-24