| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | [3.10] bpo-44654: Refactor and clean up the union type implementation (GH-271... | Miss Islington (bot) | 2021-07-17 | 5 | -99/+55 |
|
|
* | [3.10] bpo-44490: Add __parameters__ and __getitem__ to types.Union (GH-26980... | Serhiy Storchaka | 2021-07-17 | 2 | -19/+84 |
|
|
* | [3.10] bpo-44652: Preserve natural order of args in the union type. (GH-27185... | Serhiy Storchaka | 2021-07-16 | 1 | -2/+2 |
|
|
* | [3.10] bpo-44636: Collapse union of equal types (GH-27178) (GH-27181) | Serhiy Storchaka | 2021-07-16 | 1 | -8/+16 |
|
|
* | bpo-44646: Fix the hash of the union type. (GH-27179) (#27180) | Miss Islington (bot) | 2021-07-16 | 1 | -4/+6 |
|
|
* | bpo-44184: Apply GH-26274 to the non-GC-type branch of subtype_dealloc (GH-27... | Miss Islington (bot) | 2021-07-15 | 1 | -3/+11 |
|
|
* | bpo-42073: allow classmethod to wrap other classmethod-like descriptors (GH-2... | Miss Islington (bot) | 2021-07-15 | 1 | -1/+1 |
|
|
* | bpo-44632: Fix support of TypeVar in the union type (GH-27139) (GH-27143) | Miss Islington (bot) | 2021-07-15 | 1 | -1/+1 |
|
|
* | [3.10] bpo-44635: Convert None to NoneType in the union type constructor (GH-... | Serhiy Storchaka | 2021-07-15 | 1 | -9/+7 |
|
|
* | bpo-44606: Fix __instancecheck__ and __subclasscheck__ for the union type. (G... | Miss Islington (bot) | 2021-07-14 | 1 | -4/+19 |
|
|
* | bpo-44562: Use PyType_GenericAlloc in Py_GenericAlias (GH-27021) | Miss Islington (bot) | 2021-07-05 | 1 | -2/+2 |
|
|
* | bpo-44562: Remove invalid PyObject_GC_Del from error path of types.GenericAli... | Miss Islington (bot) | 2021-07-04 | 1 | -3/+3 |
|
|
* | bpo-44553: Correct failure in tp_new for the union object (GH-27008) (GH-27009) | Miss Islington (bot) | 2021-07-03 | 1 | -2/+2 |
|
|
* | bpo-44553 : Implement GC methods for types.Union (GH-26993) | Miss Islington (bot) | 2021-07-03 | 1 | -4/+17 |
|
|
* | bpo-44523: Remove the pass-through for hash() in weakref proxy objects (GH-26... | Miss Islington (bot) | 2021-06-29 | 1 | -16/+2 |
|
|
* | bpo-44483: Fix crash in union object with bad ``__module__`` (GH-26848) (GH-2... | Miss Islington (bot) | 2021-06-23 | 1 | -3/+14 |
|
|
* | [3.10] Fix a potential reference-counting bug in long_pow (GH-26690) (GH-26703) | Mark Dickinson | 2021-06-13 | 1 | -0/+1 |
|
|
* | [3.10] Add more const modifiers. (GH-26691). (GH-26692) | Serhiy Storchaka | 2021-06-12 | 2 | -4/+4 |
|
|
* | bpo-44232: Fix type_new() error reporting (GH-26359) (GH-26365) | Miss Islington (bot) | 2021-05-26 | 1 | -0/+4 |
|
|
* | bpo-44184: Fix subtype_dealloc() for freed type (GH-26274) (GH-26290) | Miss Islington (bot) | 2021-05-21 | 1 | -2/+9 |
|
|
* | bpo-44114: Remove redundant cast. (GH-26098) | Miss Islington (bot) | 2021-05-13 | 1 | -2/+2 |
|
|
* | bpo-44114: Fix dictkeys_reversed and dictvalues_reversed function signatures ... | Miss Islington (bot) | 2021-05-13 | 1 | -4/+4 |
|
|
* | bpo-43916: Move the _PyStructSequence_InitType function to the internal API (... | Pablo Galindo | 2021-05-03 | 1 | -0/+1 |
|
|
* | bpo-43977: Make sure that tp_flags for pattern matching are inherited correct... | Mark Shannon | 2021-05-02 | 1 | -6/+12 |
|
|
* | bpo-43901: Fix refleaks in test_module (GH-25754) | Pablo Galindo | 2021-04-30 | 1 | -4/+11 |
|
|
* | bpo-43908: check_set_special_type_attr() checks Py_TPFLAGS_IMMUTABLETYPE (GH-... | Erlend Egeberg Aasland | 2021-04-30 | 1 | -7/+11 |
|
|
* | bpo-43667: Fix broken Unicode encoding in non-UTF locales on Solaris (GH-25096) | Jakub KulĂk | 2021-04-30 | 1 | -0/+40 |
|
|
* | bpo-43916: PyStdPrinter_Type uses Py_TPFLAGS_DISALLOW_INSTANTIATION (GH-25749) | Victor Stinner | 2021-04-30 | 1 | -27/+4 |
|
|
* | bpo-43916: Add Py_TPFLAGS_DISALLOW_INSTANTIATION type flag (GH-25721) | Victor Stinner | 2021-04-30 | 2 | -34/+77 |
|
|
* | bpo-43973: object_set_class() checks Py_TPFLAGS_IMMUTABLETYPE (GH-25714) | Erlend Egeberg Aasland | 2021-04-30 | 1 | -3/+3 |
|
|
* | bpo-43977: Use tp_flags for collection matching (GH-25723) | Mark Shannon | 2021-04-30 | 7 | -7/+14 |
|
|
* | Two minor fixes for accessing a module's name. (#25658) | larryhastings | 2021-04-30 | 1 | -6/+2 |
|
|
* | bpo-43901: Lazy-create an empty annotations dict in all unannotated user clas... | larryhastings | 2021-04-30 | 2 | -3/+138 |
|
|
* | bpo-42800: Rename AUDIT_READ to PY_AUDIT_READ (GH-25736) | Steve Dower | 2021-04-30 | 3 | -8/+8 |
|
|
* | bpo-42800: add audit hooks for f_code and tb_frame (GH-24182) | Ryan Hileman | 2021-04-29 | 3 | -8/+8 |
|
|
* | bpo-43933: Show frame.f_lineno as None, rather than -1, if there is no line n... | Mark Shannon | 2021-04-29 | 1 | -1/+7 |
|
|
* | bpo-42739: Don't use sentinels to mark end of line table. (GH-25657) | Mark Shannon | 2021-04-29 | 2 | -24/+21 |
|
|
* | bpo-24275: Don't downgrade unicode-only dicts to mixed on lookups (GH-25186) | Hristo Venev | 2021-04-29 | 1 | -3/+6 |
|
|
* | bpo-43908: Add Py_TPFLAGS_IMMUTABLETYPE flag (GH-25520) | Erlend Egeberg Aasland | 2021-04-28 | 1 | -1/+6 |
|
|
* | bpo-41559: Change PEP 612 implementation to pure Python (#25449) | Ken Jin | 2021-04-28 | 1 | -62/+14 |
|
|
* | bpo-43962: Fix _PyInterpreterState_IDIncref() (GH-25683) | Victor Stinner | 2021-04-28 | 1 | -3/+9 |
|
|
* | bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525) | Pablo Galindo | 2021-04-23 | 1 | -17/+28 |
|
|
* | bpo-43475: Fix worst case collision behavior for NaN instances (GH-25493) | Raymond Hettinger | 2021-04-22 | 2 | -3/+3 |
|
|
* | bpo-40137: Add pycore_moduleobject.h internal header (GH-25507) | Victor Stinner | 2021-04-21 | 3 | -18/+9 |
|
|
* | bpo-40137: Optimize _PyType_GetModuleByDef() loop (GH-25505) | Victor Stinner | 2021-04-21 | 1 | -5/+21 |
|
|
* | bpo-40137: _PyType_GetModuleByDef() doesn't check tp_flags (GH-25504) | Victor Stinner | 2021-04-21 | 1 | -15/+14 |
|
|
* | bpo-38530: Properly extend UnboundLocalError from NameError (GH-25444) | Pablo Galindo | 2021-04-16 | 1 | -1/+2 |
|
|
* | bpo-38530: Offer suggestions on NameError (GH-25397) | Pablo Galindo | 2021-04-14 | 1 | -2/+63 |
|
|
* | bpo-38530: Offer suggestions on AttributeError (#16856) | Pablo Galindo | 2021-04-14 | 2 | -12/+112 |
|
|
* | bpo-43770: Cleanup type_ready() (GH-25388) | Victor Stinner | 2021-04-13 | 1 | -119/+153 |
|
|