| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-118362: Fix thread safety around lookups from the type cache in the face o... | Dino Viehland | 2024-05-06 | 1 | -0/+19 |
|
|
* | gh-112075: Make instance attributes stored in inline "dict" thread safe (#114... | Dino Viehland | 2024-04-22 | 1 | -0/+9 |
|
|
* | GH-117750: When clearing object's dict, clear inline values but leave dict at... | Mark Shannon | 2024-04-15 | 1 | -0/+10 |
|
|
* | GH-115776: Embed the values array into the object, for "normal" Python object... | Mark Shannon | 2024-04-02 | 1 | -1/+76 |
|
|
* | gh-94808:Improve coverage of PyObject_Print (GH-98749) | MonadChains | 2024-04-01 | 1 | -0/+1 |
|
|
* | gh-116417: Move limited C API abstract.c tests to _testlimitedcapi (#116986) | Victor Stinner | 2024-03-19 | 1 | -3/+3 |
|
|
* | GH-114806. Don't specialize calls to classes with metaclasses. (GH-114870) | Mark Shannon | 2024-02-01 | 1 | -0/+16 |
|
|
* | gh-107178: Add the C API tests for the Abstract Objects Layer (GH-107179) | Serhiy Storchaka | 2023-08-07 | 1 | -2/+2 |
|
|
* | gh-96663: Add a better error message for __dict__-less classes setattr (#103232) | James Hilton-Balfe | 2023-07-22 | 1 | -1/+17 |
|
|
* | GH-106057: Handle recursion errors in inline class calls properly. (GH-106108) | Mark Shannon | 2023-07-07 | 1 | -0/+15 |
|
|
* | gh-102799: use sys.exception() instead of sys.exc_info() in tests (#103293) | Irit Katriel | 2023-04-06 | 1 | -1/+1 |
|
|
* | gh-94808: Add test coverage for PyObject_HasAttrString (#96627) | MonadChains | 2022-10-03 | 1 | -0/+14 |
|
|
* | bpo-43857: Improve the AttributeError message when deleting a missing attribu... | Géry Ogam | 2022-05-05 | 1 | -0/+43 |
|
|
* | bpo-46161: Fix bug in starunpack_helper in compile.c (GH-30235) | zq1997 | 2022-01-17 | 1 | -0/+18 |
|
|
* | Remove binding of captured exceptions when not used to reduce the chances of ... | Pablo Galindo | 2019-11-19 | 1 | -1/+1 |
|
|
* | bpo-31506: Clarify error messages for object.__new__ and object.__init__ (GH-... | Sanyam Khurana | 2019-02-19 | 1 | -7/+13 |
|
|
* | bpo-1617161: Make the hash and equality of methods not depending on the value... | Serhiy Storchaka | 2018-07-31 | 1 | -11/+27 |
|
|
* | bpo-32297: Few misspellings found in Python source code comments. (#4803) | Mike | 2017-12-14 | 1 | -1/+1 |
|
|
* | bpo-31506: Improve the error message logic for class instantiation (GH-4740) | Sanyam Khurana | 2017-12-10 | 1 | -0/+49 |
|
|
* | bpo-25794: Fix `type.__setattr__()` for non-interned attribute names. (#1652) | Serhiy Storchaka | 2017-05-20 | 1 | -0/+27 |
|
|
* | Backed out changeset af29d89083b3 (closes #25548) (closes #27498) | Benjamin Peterson | 2016-07-14 | 1 | -10/+0 |
|
|
* | Issue #25548: Showing memory address of class objects in repl | Kushal Das | 2016-06-04 | 1 | -0/+10 |
|
|
* | Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. | Yury Selivanov | 2015-07-03 | 1 | -2/+2 |
|
|
* | Issue #21741: Update 147 test modules to use test discovery. | Zachary Ware | 2015-04-13 | 1 | -6/+2 |
|
|
* | Issue #23641: Cleaned out legacy dunder names from tests and docs. | Serhiy Storchaka | 2015-03-12 | 1 | -10/+34 |
|\ |
|
| * | Issue #23641: Cleaned out legacy dunder names from tests and docs. | Serhiy Storchaka | 2015-03-12 | 1 | -10/+24 |
|/ |
|
* | #9424: Replace deprecated assert* methods in the Python test suite. | Ezio Melotti | 2010-11-20 | 1 | -12/+12 |
|
|
* | remove some more references to __cmp__ #1717 | Benjamin Peterson | 2008-10-16 | 1 | -9/+0 |
|
|
* | #2621 rename test.test_support to test.support | Benjamin Peterson | 2008-05-20 | 1 | -2/+2 |
|
|
* | Merged revisions 60990-61002 via svnmerge from | Christian Heimes | 2008-02-23 | 1 | -1/+0 |
|
|
* | Patch from Georg Brandl and me for #1493 | Christian Heimes | 2007-11-25 | 1 | -1/+1 |
|
|
* | Remove the simple slicing API. All slicing is now done with slice objects. | Thomas Wouters | 2007-08-30 | 1 | -37/+4 |
|
|
* | Merge the trunk changes in. Breaks socket.ssl for now. | Thomas Wouters | 2007-08-28 | 1 | -304/+507 |
|
|
* | Merged revisions 55817-55961 via svnmerge from | Guido van Rossum | 2007-06-13 | 1 | -11/+4 |
|
|
* | * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. | Georg Brandl | 2007-02-09 | 1 | -1/+1 |
|
|
* | Fix most trivially-findable print statements. | Guido van Rossum | 2007-02-09 | 1 | -24/+24 |
|
|
* | Rip out 'long' and 'L'-suffixed integer literals. | Guido van Rossum | 2007-01-15 | 1 | -26/+1 |
|
|
* | SF patch 1631942 by Collin Winter: | Guido van Rossum | 2007-01-10 | 1 | -2/+2 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -0/+8 |
|
|
* | Patch #1550800: make exec a function. | Georg Brandl | 2006-09-06 | 1 | -2/+2 |
|
|
* | Killed the <> operator. You must now use !=. | Guido van Rossum | 2006-08-24 | 1 | -2/+0 |
|
|
* | Restructure comparison dramatically. There is no longer a default | Guido van Rossum | 2006-08-24 | 1 | -0/+24 |
|
|
* | Get rid of most of the flags (in tp_flags) that keep track of various | Guido van Rossum | 2006-07-27 | 1 | -5/+0 |
|
|
* | Merge the rest of the trunk. | Thomas Wouters | 2006-06-08 | 1 | -0/+34 |
|
|
* | Make test_class work (but still fail) even though class.__dict__ is now a | Thomas Wouters | 2006-04-15 | 1 | -2/+5 |
|
|
* | Get rid of remnants of integer division | Neal Norwitz | 2006-03-24 | 1 | -12/+4 |
|
|
* | Don't use 'is not' to compare strings. | Michael W. Hudson | 2005-05-04 | 1 | -1/+1 |
|
|
* | Check the type of values returned by __int__, __float__, __long__, | Neil Schemenauer | 2004-07-19 | 1 | -27/+80 |
|
|
* | Fix a bunch of typos in documentation, docstrings and comments. | Walter Dörwald | 2003-10-20 | 1 | -1/+1 |
|
|
* | Added test for this fix to classobject.c: | Guido van Rossum | 2002-10-29 | 1 | -0/+27 |
|
|