Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/tags/v3.10.4
/
Objects
tag
ae74560a6f6539eaacf12e777f8e5136135773a9
tagger
Pablo Galindo <pablogsal@gmail.com>
Wed Mar 23 20:12:10 2022
object
9d38120e335357a3b294277fd5eff0a10e46e043
Python 3.10.4
cebdc32
bpo-43721: Fix docstrings for property.getter/setter/deleter (GH-31046)
by Miss Islington (bot)
· 3 years, 5 months ago
3594ebc
[3.10] bpo-46940: Don't override existing AttributeError suggestion information (GH-31710) (GH-31724)
by Pablo Galindo Salgado
· 3 years, 5 months ago
0848da1
bpo-46852: Rename float.__set_format__() to float.__setformat__() (GH-31558) (GH-31578)
by Victor Stinner
· 3 years, 6 months ago
c596ecb
[3.10] bpo-46732: fix __bool__ docstring (GH-31301) (GH-31473)
by Miss Islington (bot)
· 3 years, 6 months ago
1f5fe99
bpo-46615: Don't crash when set operations mutate the sets (GH-31120)
by Miss Islington (bot)
· 3 years, 6 months ago
8b8673f
[3.10] bpo-46433: _PyType_GetModuleByDef: handle static types in MRO (GH-30696) (GH-31262)
by Petr Viktorin
· 3 years, 6 months ago
acda9f3
bpo-46417: Fix race condition on setting type __bases__ (GH-30788) (GH-30789)
by Miss Islington (bot)
· 3 years, 7 months ago
d2b7e08
docs: correct outdated MappingProxyType docstrings (GH-30281)
by Miss Islington (bot)
· 3 years, 7 months ago
72c260c
[3.10] bpo-46006: Revert "bpo-40521: Per-interpreter interned strings (GH-20085)" (GH-30422) (GH-30425)
by Victor Stinner
· 3 years, 7 months ago
da8be15
bpo-46236: Fix PyFunction_GetAnnotations() returned tuple. (GH-30409)
by Miss Islington (bot)
· 3 years, 8 months ago
1b37268
bpo-46085: Fix iterator cache mechanism of OrderedDict. (GH-30290)
by Miss Islington (bot)
· 3 years, 8 months ago
99c7232
[3.10] bpo-46009: Do not exhaust generator when send() method raises (GH-29986). (GH-29988)
by Mark Shannon
· 3 years, 8 months ago
045f205
bpo-45392: Update the docstring of the 'type' built-in (GH-29439) (GH-29452)
by Miss Islington (bot)
· 3 years, 10 months ago
f812fef
bpo-30570: Use Py_EnterRecursiveCall() in issubclass() (GH-29048)
by Miss Islington (bot)
· 3 years, 10 months ago
1cdac61
bpo-45521: Fix a bug in the obmalloc radix tree code. (GH-29051) (GH-29122)
by Miss Islington (bot)
· 3 years, 10 months ago
4641afe
[3.10] bpo-45467: Fix IncrementalDecoder and StreamReader in the "raw-unicode-escape" codec (GH-28944) (GH-28952)
by Serhiy Storchaka
· 3 years, 10 months ago
0bff4cc
[3.10] bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-escape" codec (GH-28939) (GH-28943)
by Miss Islington (bot)
· 3 years, 10 months ago
dcfbe4f
[3.10] Fix typos in the Objects directory (GH-28766) (GH-28797)
by Christian Clauss
· 3 years, 11 months ago
35d4857
bpo-45385: Fix reference leak from descr_check (GH-28719) (GH-28779)
by Miss Islington (bot)
· 3 years, 11 months ago
1670d59
[3.10] bpo-45355: More use of sizeof(_Py_CODEUNIT) (GH-28720). (GH-28721)
by Serhiy Storchaka
· 3 years, 11 months ago
b549978
[3.10] bpo-45355: Use sizeof(_Py_CODEUNIT) instead of literal 2 for the size of the code unit (GH-28711). (GH-28718)
by Serhiy Storchaka
· 3 years, 11 months ago
93242d7
[3.10] Remove trailing spaces (GH-28709)
by Serhiy Storchaka
· 3 years, 11 months ago
5ba61f4
Fix spelling error in comment (GH-28696) (GH-28699)
by Miss Islington (bot)
· 3 years, 11 months ago
8c1e1da
[3.10] [codemod] Fix non-matching bracket pairs (GH-28473) (GH-28511)
by Łukasz Langa
· 4 years ago
9c23a1e
bpo-44640: Improve punctuation consistency in isinstance/issubclass error messages (GH-27144) (GH-28436)
by Miss Islington (bot)
· 4 years ago
7ab114b
bpo-45198: __set_name__ documentation not clear about its usage with non-descriptor classes (GH-28439)
by Miss Islington (bot)
· 4 years ago
de4c9c0
bpo-45167: Fix deepcopying of GenericAlias (GH-28324) (GH-28367)
by Miss Islington (bot)
· 4 years ago
6b996d6
[3.10] bpo-45083: Include the exception class qualname when formatting an exception (GH-28119) (GH-28134)
by Miss Islington (bot)
· 4 years ago
53257cf
bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194) (GH-28199)
by Miss Islington (bot)
· 4 years ago
adc80a5
bpo-44963: Implement send() and throw() methods for anext_awaitable objects (GH-27955)
by Miss Islington (bot)
· 4 years ago
ed9f927
bpo-45030: Fix integer overflow in __reduce__ of the range iterator (GH-28000)
by Miss Islington (bot)
· 4 years ago
cd986e9
bpo-45018: Fix rangeiter_reduce in rangeobject.c (GH-27938)
by Miss Islington (bot)
· 4 years ago
838b0e9
bpo-44954: Fix wrong result in float.fromhex corner case (GH-27834)
by Miss Islington (bot)
· 4 years ago
3f81e96
bpo-44698: Restore complex pow behaviour for small integral exponents (GH-27772) (GH-27796)
by Miss Islington (bot)
· 4 years ago
d6d2d54
bpo-33930: Fix segfault with deep recursion when cleaning method objects (GH-27678) (GH-27719)
by Miss Islington (bot)
· 4 years ago
e9ec71a
bpo-44872: use new trashcan macros in framobject.c (GH-27683) (GH-27690)
by Irit Katriel
· 4 years ago
4729976
bpo-44662: Add ability to annotate types.Union (GH-27214) (GH-27461)
by Miss Islington (bot)
· 4 years, 1 month ago
761c641
bpo-44707: Fix an undefined behavior of the null pointer arithmetic (GH-27292) (GH-27442)
by Miss Islington (bot)
· 4 years, 1 month ago
6b922da
bpo-41103: Resurrect the old buffer protocol. (GH-27437) (GH-27441)
by Miss Islington (bot)
· 4 years, 1 month ago
c558e12
bpo-44657: Fix instancemethod_call to use PyInstanceMethod_GET_FUNCTION (GH-27202)
by Miss Islington (bot)
· 4 years, 1 month ago
68e3dca
bpo-34013: Move the Python 2 hints from the exception constructor to the parser (GH-27392)
by Miss Islington (bot)
· 4 years, 1 month ago
256d97c
bpo-44698: Fix undefined behaviour in complex exponentiation. (GH-27278) (#27366)
by Miss Islington (bot)
· 4 years, 1 month ago
8a37e8c
bpo-44732: Rename types.Union to types.UnionType (GH-27342)
by Miss Islington (bot)
· 4 years, 1 month ago
0aea99e
bpo-44676: Serialize the union type using only public API (GH-27323) (GH-27340)
by Miss Islington (bot)
· 4 years, 1 month ago
ca5a4cf
bpo-44731: Simplify the union type implementation (GH-27318) (GH-27334)
by Ken Jin
· 4 years, 1 month ago
9356d1e
[3.10] bpo-44676: Add ability to serialize types.Union (GH-27244) (GH-27333)
by Pablo Galindo Salgado
· 4 years, 1 month ago
659030c
bpo-44720: Don't crash when calling weakref.proxy(not_an_iterator).__next__ (GH-27316) (GH-27324)
by Miss Islington (bot)
· 4 years, 1 month ago
632e8a6
bpo-42747: Remove Py_TPFLAGS_HAVE_AM_SEND and make Py_TPFLAGS_HAVE_VERSION_TAG no-op (GH-27260) (GH-27306)
by Miss Islington (bot)
· 4 years, 1 month ago
21db59f
bpo-44653: Support typing types in parameter substitution in the union type. (GH-27247) (#27296)
by Miss Islington (bot)
· 4 years, 1 month ago
85b5829
bpo-44633: Fix parameter substitution of the union type with wrong types. (GH-27218) (GH-27224)
by Miss Islington (bot)
· 4 years, 1 month ago
03aad30
[3.10] bpo-44654: Refactor and clean up the union type implementation (GH-27196) (GH-27219)
by Miss Islington (bot)
· 4 years, 1 month ago
2d055ce
[3.10] bpo-44490: Add __parameters__ and __getitem__ to types.Union (GH-26980) (GH-27207)
by Serhiy Storchaka
· 4 years, 1 month ago
80844d1
[3.10] bpo-44652: Preserve natural order of args in the union type. (GH-27185) (GH-27190)
by Serhiy Storchaka
· 4 years, 1 month ago
c3007ab
[3.10] bpo-44636: Collapse union of equal types (GH-27178) (GH-27181)
by Serhiy Storchaka
· 4 years, 1 month ago
7059880
bpo-44646: Fix the hash of the union type. (GH-27179) (#27180)
by Miss Islington (bot)
· 4 years, 1 month ago
6aa59c6
bpo-44184: Apply GH-26274 to the non-GC-type branch of subtype_dealloc (GH-27165) (GH-27174)
by Miss Islington (bot)
· 4 years, 1 month ago
2ce8af3
bpo-42073: allow classmethod to wrap other classmethod-like descriptors (GH-27115) (GH-27162)
by Miss Islington (bot)
· 4 years, 1 month ago
cc1a47c
bpo-44632: Fix support of TypeVar in the union type (GH-27139) (GH-27143)
by Miss Islington (bot)
· 4 years, 1 month ago
6dec525
[3.10] bpo-44635: Convert None to NoneType in the union type constructor (GH-27136). (GH-27142)
by Serhiy Storchaka
· 4 years, 1 month ago
b42eee7
bpo-44606: Fix __instancecheck__ and __subclasscheck__ for the union type. (GH-27120)
by Miss Islington (bot)
· 4 years, 1 month ago
d17cc1f
bpo-44562: Use PyType_GenericAlloc in Py_GenericAlias (GH-27021)
by Miss Islington (bot)
· 4 years, 1 month ago
68330b6
bpo-44562: Remove invalid PyObject_GC_Del from error path of types.GenericAlias … (GH-27016)
by Miss Islington (bot)
· 4 years, 2 months ago
000b9e8
bpo-44553: Correct failure in tp_new for the union object (GH-27008) (GH-27009)
by Miss Islington (bot)
· 4 years, 2 months ago
0856134
bpo-44553 : Implement GC methods for types.Union (GH-26993)
by Miss Islington (bot)
· 4 years, 2 months ago
2df13e1
bpo-44523: Remove the pass-through for hash() in weakref proxy objects (GH-26950)
by Miss Islington (bot)
· 4 years, 2 months ago
7e6cad7
bpo-44483: Fix crash in union object with bad ``__module__`` (GH-26848) (GH-26852)
by Miss Islington (bot)
· 4 years, 2 months ago
929dd81
[3.10] Fix a potential reference-counting bug in long_pow (GH-26690) (GH-26703)
by Mark Dickinson
· 4 years, 2 months ago
c43317d
[3.10] Add more const modifiers. (GH-26691). (GH-26692)
by Serhiy Storchaka
· 4 years, 2 months ago
7b3b698
bpo-44232: Fix type_new() error reporting (GH-26359) (GH-26365)
by Miss Islington (bot)
· 4 years, 3 months ago
50b0d14
bpo-44184: Fix subtype_dealloc() for freed type (GH-26274) (GH-26290)
by Miss Islington (bot)
· 4 years, 3 months ago
c4c3beb
bpo-44114: Remove redundant cast. (GH-26098)
by Miss Islington (bot)
· 4 years, 3 months ago
7cbe6ca
bpo-44114: Fix dictkeys_reversed and dictvalues_reversed function signatures (GH-26062)
by Miss Islington (bot)
· 4 years, 3 months ago
c2931d3
bpo-43916: Move the _PyStructSequence_InitType function to the internal API (GH-25854)
by Pablo Galindo
· 4 years, 4 months ago
33ec88a
bpo-43977: Make sure that tp_flags for pattern matching are inherited correctly. (GH-25813)
by Mark Shannon
· 4 years, 4 months ago
e374a40
bpo-43901: Fix refleaks in test_module (GH-25754)
by Pablo Galindo
· 4 years, 4 months ago
6414138
bpo-43908: check_set_special_type_attr() checks Py_TPFLAGS_IMMUTABLETYPE (GH-25743)
by Erlend Egeberg Aasland
· 4 years, 4 months ago
9032cf5
bpo-43667: Fix broken Unicode encoding in non-UTF locales on Solaris (GH-25096)
by Jakub Kulík
· 4 years, 4 months ago
4908fae
bpo-43916: PyStdPrinter_Type uses Py_TPFLAGS_DISALLOW_INSTANTIATION (GH-25749)
by Victor Stinner
· 4 years, 4 months ago
3bb0994
bpo-43916: Add Py_TPFLAGS_DISALLOW_INSTANTIATION type flag (GH-25721)
by Victor Stinner
· 4 years, 4 months ago
b73b5fb
bpo-43973: object_set_class() checks Py_TPFLAGS_IMMUTABLETYPE (GH-25714)
by Erlend Egeberg Aasland
· 4 years, 4 months ago
069e81a
bpo-43977: Use tp_flags for collection matching (GH-25723)
by Mark Shannon
· 4 years, 4 months ago
175a54b
Two minor fixes for accessing a module's name. (#25658)
by larryhastings
· 4 years, 4 months ago
2f2b698
bpo-43901: Lazy-create an empty annotations dict in all unannotated user classes and modules (#25623)
by larryhastings
· 4 years, 4 months ago
87655e2
bpo-42800: Rename AUDIT_READ to PY_AUDIT_READ (GH-25736)
by Steve Dower
· 4 years, 4 months ago
9a2c2a9
bpo-42800: add audit hooks for f_code and tb_frame (GH-24182)
by Ryan Hileman
· 4 years, 4 months ago
088a15c
bpo-43933: Show frame.f_lineno as None, rather than -1, if there is no line number. (GH-25717)
by Mark Shannon
· 4 years, 4 months ago
c76da79
bpo-42739: Don't use sentinels to mark end of line table. (GH-25657)
by Mark Shannon
· 4 years, 4 months ago
8557edb
bpo-24275: Don't downgrade unicode-only dicts to mixed on lookups (GH-25186)
by Hristo Venev
· 4 years, 4 months ago
3b52c8d
bpo-43908: Add Py_TPFLAGS_IMMUTABLETYPE flag (GH-25520)
by Erlend Egeberg Aasland
· 4 years, 4 months ago
859577c
bpo-41559: Change PEP 612 implementation to pure Python (#25449)
by Ken Jin
· 4 years, 4 months ago
32c5a17
bpo-43962: Fix _PyInterpreterState_IDIncref() (GH-25683)
by Victor Stinner
· 4 years, 4 months ago
a77aac4
bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)
by Pablo Galindo
· 4 years, 4 months ago
a07da09
bpo-43475: Fix worst case collision behavior for NaN instances (GH-25493)
by Raymond Hettinger
· 4 years, 4 months ago
cdad272
bpo-40137: Add pycore_moduleobject.h internal header (GH-25507)
by Victor Stinner
· 4 years, 4 months ago
760da62
bpo-40137: Optimize _PyType_GetModuleByDef() loop (GH-25505)
by Victor Stinner
· 4 years, 4 months ago
d4aaa34
bpo-40137: _PyType_GetModuleByDef() doesn't check tp_flags (GH-25504)
by Victor Stinner
· 4 years, 4 months ago
3b82cae
bpo-38530: Properly extend UnboundLocalError from NameError (GH-25444)
by Pablo Galindo
· 4 years, 4 months ago
5bf8bf2
bpo-38530: Offer suggestions on NameError (GH-25397)
by Pablo Galindo
· 4 years, 4 months ago
37494b4
bpo-38530: Offer suggestions on AttributeError (#16856)
by Pablo Galindo
· 4 years, 4 months ago
a328d73
bpo-43770: Cleanup type_ready() (GH-25388)
by Victor Stinner
· 4 years, 4 months ago
Next »