Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/tags/v3.8.13
/
Objects
tag
4ab1dd0d884c9e4bcd4a9fa30f5bf37cf6ad6c61
tagger
Łukasz Langa <lukasz@langa.pl>
Wed Mar 16 12:29:53 2022
object
ea673213dd30afd8cacb53927e7d86f6125e86c8
Python 3.8.13
09d814b
[3.8] bpo-33930: Fix segfault with deep recursion when cleaning method objects (GH-27678) (GH-27721)
by Łukasz Langa
· 4 years ago
b019ffe
bpo-44872: use new trashcan macros in framobject.c (GH-27683) (GH-27692)
by Irit Katriel
· 4 years ago
8ab272f
bpo-42800: Add audit events for f_code and tb_frame (GH-24182)
by Miss Islington (bot)
· 4 years, 4 months ago
77db337
bpo-43962: Fix _PyInterpreterState_IDIncref() (GH-25683) (GH-25686)
by Victor Stinner
· 4 years, 4 months ago
e1203e8
bpo-42924: Fix incorrect copy in bytearray_repeat (GH-24208) (#24212)
by Miss Islington (bot)
· 4 years, 4 months ago
3b6e61e
bpo-35883: Py_DecodeLocale() escapes invalid Unicode characters (GH-24843) (GH-24906)
by Miss Islington (bot)
· 4 years, 5 months ago
187f76d
[3.8] bpo-40052: Fix alignment issue in PyVectorcall_Function() (GH-23999) (GH-24120)
by Petr Viktorin
· 4 years, 7 months ago
1a544e1
[3.8] bpo-42425: Fix possible leak in initialization of errmap for OSError (GH-23446). (GH-24025)
by Serhiy Storchaka
· 4 years, 8 months ago
7c79798
bpo-42536: GC track recycled tuples (GH-23623) (GH-23652)
by Brandt Bucher
· 4 years, 8 months ago
648a32b
bpo-42412: Fix possible leaks and check arguments in PyType_FromModuleAndSpec() (GH-23410)
by Miss Islington (bot)
· 4 years, 9 months ago
9ede1b0
bpo-42143: Ensure PyFunction_NewWithQualName() can't fail after creating the func object (GH-22953)
by Miss Skeleton (bot)
· 4 years, 10 months ago
400175a
bpo-42065: Fix incorrectly formatted _codecs.charmap_decode error message (GH-19940)
by Miss Skeleton (bot)
· 4 years, 10 months ago
aeb66c1
bpo-41984: GC track all user classes (GH-22701/GH-22707)
by Miss Skeleton (bot)
· 4 years, 10 months ago
09a7b3b
[3.8] bpo-41909: Enable previously disabled recursion checks. (GH-22536) (GH-22551)
by Serhiy Storchaka
· 4 years, 11 months ago
6ae6195
bpo-41654: Explicitly cast PyExc_MemoryError to PyTypeObject to avoid warning (GH-22102)
by Pablo Galindo
· 5 years ago
77f4000
[3.8] [3.9] bpo-41654: Fix deallocator of MemoryError to account for subclasses (GH-22020) (GH-22046)
by Pablo Galindo
· 5 years ago
38d930f
bpo-41295: Reimplement the Carlo Verre "hackcheck" (GH-21528)
by Miss Islington (bot)
· 5 years ago
33672c0
bpo-41175: Guard against a NULL pointer dereference within bytearrayobject (GH-21240)
by Miss Islington (bot)
· 5 years ago
8912c18
bpo-39960: Allow heap types in the "Carlo Verre" hack check that override "tp_setattro()" (GH-21092) (GH-21339)
by scoder
· 5 years ago
b99824a
bpo-40824: Do not mask errors in __iter__ in "in" and the operator module. (GH-20537)
by Miss Islington (bot)
· 5 years ago
890dcfe
Fix a possible refleak in tupleobject.c (GH-19018)
by Miss Islington (bot)
· 5 years ago
03ac090
bpo-39884: Add method name in "bad call flags" error (GH-18944) (GH-18956)
by Victor Stinner
· 5 years ago
ab9c729
[3.8] bpo-38643: Raise SystemError instead of crashing when PyNumber_ToBase is called with invalid base. (GH-18863). (GH-18954)
by Serhiy Storchaka
· 5 years ago
9ddcb91
[3.8] bpo-39778: Don't traverse weak-reference lists OrderedDict's tp_traverse and tp_clear (GH-18749) (GH-18756)
by Pablo Galindo
· 5 years ago
aa82134
Give proper credits for the memoryview implementation. (GH-18626) (#18642)
by Miss Islington (bot)
· 5 years ago
0c1827e
bpo-39382: Avoid dangling object use in abstract_issubclass() (GH-18530)
by Miss Islington (bot)
· 5 years ago
f64abd1
[3.8] bpo-39453: Fix contains method of list to hold strong references (GH-18204)
by Dong-hee Na
· 6 years ago
0d860dd
[3.8] closes bpo-39630: Update pointers to string literals to be const char *. (GH-18511)
by Benjamin Peterson
· 6 years ago
8dbdf5f
[3.8] bpo-39606: allow closing async generators that are already closed (GH-18475) (GH-18501)
by Miss Islington (bot)
· 6 years ago
0b8f738
bpo-39605: Remove a cast that causes a warning. (GH-18473)
by Miss Islington (bot)
· 6 years ago
190433d
closes bpo-39605: Fix some casts to not cast away const. (GH-18453)
by Miss Islington (bot)
· 6 years ago
a0389ba
Fixes in sorting descriptions (GH-18317)
by Miss Islington (bot)
· 6 years ago
fdb2160
bpo-39425: Fix list.count performance regression (GH-18119) (GH-18120)
by Miss Islington (bot)
· 6 years ago
a755410
closes bpo-39415: Remove unused codes from longobject.c complexobject.c floatobject.c. (GH-18105)
by Miss Islington (bot)
· 6 years ago
5cadd3f
bpo-39386: Prevent double awaiting of async iterator (GH-18081)
by Miss Islington (bot)
· 6 years ago
4cdb758
bpo-38400 Don't check for NULL linked list pointers in _PyObject_IsFreed (GH-16630)
by Miss Islington (bot)
· 6 years ago
dad526e
Document CodeType.replace (GH-17776)
by Miss Islington (bot)
· 6 years ago
2ee8791
[3.8] bpo-38588: Fix possible crashes in dict and list when calling P… (GH-17764)
by Dong-hee Na
· 6 years ago
fcaf14c
bpo-38610: Fix possible crashes in several list methods (GH-17022)
by Miss Islington (bot)
· 6 years ago
5dd1909
closes bpo-30364: Replace deprecated no_address_safety_analysis attribute. (GH-17702)
by Miss Islington (bot)
· 6 years ago
191f94c
bpo-38922: Raise code.__new__ audit event when code object replace() is called (GH-17394)
by Miss Islington (bot)
· 6 years ago
6c3b471
bpo-35409: Ignore GeneratorExit in async_gen_athrow_throw (GH-14755)
by Miss Islington (bot)
· 6 years ago
c5d3ea8
bpo-38555: Fix an undefined behavior. (GH-16883)
by Miss Skeleton (bot)
· 6 years ago
d73205d
bpo-38525: Fix a segmentation fault when using reverse iterators of empty dict (GH-16846)
by Miss Islington (bot)
· 6 years ago
f82ce5b
[3.8] bpo-36389: Backport debug enhancements from master (GH-16796)
by Victor Stinner
· 6 years ago
9a7c43b
Fix strict-aliasing rules errors on gcc 4.8.5. (GH-16714)
by Miss Islington (bot)
· 6 years ago
0baa6b3
bpo-38409: Fix grammar in str.strip() docstring (GH-16682) (GH-16684)
by Miss Islington (bot)
· 6 years ago
526ef85
[3.8] bpo-38395: Fix ownership in weakref.proxy methods (GH-16632) (GH-16662)
by Pablo Galindo
· 6 years ago
ce3c913
bpo-38383: Fix possible integer overflow in startswith() of bytes and bytearray. (GH-16603)
by Miss Islington (bot)
· 6 years ago
b361207
Restore tp_clear for function object. (#16502)
by Neil Schemenauer
· 6 years ago
2f87a7d
bpo-30773: Fix ag_running; prohibit running athrow/asend/aclose in parallel (GH-7468) (#16486)
by Miss Islington (bot)
· 6 years ago
36c6fa9
bpo-38115: Deal with invalid bytecode offsets in lnotab (GH-16079) (GH-16464)
by Gregory P. Smith
· 6 years ago
ca14f04
bpo-38005: Remove support of string argument in InterpreterID(). (GH-16227)
by Miss Islington (bot)
· 6 years ago
c5c6425
bpo-38236: Dump path config at first import error (GH-16300) (GH-16332)
by Victor Stinner
· 6 years ago
47bbab9
[3.8] bpo-38070: Py_FatalError() logs runtime state (GH-16258)
by Victor Stinner
· 6 years ago
3c1786f
bpo-38013: make async_generator_athrow object tolerant to throwing exceptions (GH-16070)
by Miss Islington (bot)
· 6 years ago
f37a983
[3.8] bpo-38005: Fixed comparing and creating of InterpreterID and ChannelID. (GH-15652) (GH-16145)
by Serhiy Storchaka
· 6 years ago
d322abb
[3.8] bpo-37206: Unrepresentable default values no longer represented as None. (GH-13933) (GH-16141)
by Serhiy Storchaka
· 6 years ago
d04c85f
bpo-38096: Complete the "structseq" and "named tuple" cleanup (GH-16010) (GH-16062)
by Miss Islington (bot)
· 6 years ago
3562ae2
[3.8] bpo-37879: Suppress subtype_dealloc decref when base type is a C heap type (GH-15323, GH-16004) (GH-15966)
by Petr Viktorin
· 6 years ago
2bb6bf0
bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895) (GH-15961)
by Paul Ganssle
· 6 years ago
6a17751
Doc: Fix typo in fastsearch comments (GH-14608) (GH-15933)
by Miss Islington (bot)
· 6 years ago
98224d2
Remove unneeded assignment in PyBytes_Concat() (GH-15274)
by Miss Islington (bot)
· 6 years ago
eb1bc48
bpo-37619: update_one_slot() should not ignore wrapper descriptors for wrong type (GH-15838)
by Miss Islington (bot)
· 6 years ago
18fa272
Fix typo in dict object comment (GH-15814)
by Miss Islington (bot)
· 6 years ago
ccaea52
Revert "bpo-33418: Add tp_clear for function object (GH-8058)" (GH-15826)
by Victor Stinner
· 6 years ago
353053d
[3.8] bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630) (GH-15635)
by Serhiy Storchaka
· 6 years ago
4bd1d05
Fix typos mostly in comments, docs and test names (GH-15209)
by Miss Islington (bot)
· 6 years ago
96631dc
[3.8] bpo-37034: Display argument name on errors with keyword arguments with Argument Clinic. (GH-13593). (GH-15599)
by Serhiy Storchaka
· 6 years ago
d5ba8bb
Fix unused variable and signed/unsigned warnings (GH-15537) (GH-15551)
by Miss Islington (bot)
· 6 years ago
6ca0307
[3.8] bpo-37757: Disallow PEP 572 cases that expose implementation details (GH-15491)
by Nick Coghlan
· 6 years ago
ed146b5
[3.8] bpo-37830: Fix compilation of break and continue in finally. (GH-15320) (GH-15456)
by Serhiy Storchaka
· 6 years ago
f93c15a
bpo-36311: Fixes decoding multibyte characters around chunk boundaries and improves decoding performance (GH-15083)
by Miss Islington (bot)
· 6 years ago
30e5aff
bpo-37732: Fix GCC warning in _PyObject_Malloc() (GH-15333) (GH-15342)
by Victor Stinner
· 6 years ago
364a1d3
bpo-37681: no_sanitize_thread support from GCC 5.1 (GH-15096)
by Miss Islington (bot)
· 6 years ago
bf8e82f
[3.8] bpo-36974: separate vectorcall functions for each calling convention (GH-13781) (#14782)
by Jeroen Demeyer
· 6 years ago
1099e34
bpo-37233: optimize method_vectorcall in case of totalargs == 0 (GH-14550)
by Miss Islington (bot)
· 6 years ago
c7570d4
[3.8] bpo-37233: use _PY_FASTCALL_SMALL_STACK in method_vectorcall (GH-13974)
by Inada Naoki
· 6 years ago
d4c6647
Stop using Argument Clinic for dict_pop (GH-13935)
by Inada Naoki
· 6 years ago
cb083f7
bpo-37221: Add PyCode_NewWithPosOnlyArgs to be used internally and set PyCode_New as a compatibility wrapper (GH-13959) (#14505)
by Miss Islington (bot)
· 6 years ago
5c4ce3e
bpo-37417: Fix error handling in bytearray.extend. (GH-14407)
by Miss Islington (bot)
· 6 years ago
d32594a
bpo-24214: Fixed the UTF-8 and UTF-16 incremental decoders. (GH-14304)
by Miss Islington (bot)
· 6 years ago
26fe6c3
bpo-36974: inherit tp_vectorcall_offset unconditionally (GH-13858) (GH-14342)
by Miss Islington (bot)
· 6 years ago
988fff5
bpo-36922: use Py_TPFLAGS_METHOD_DESCRIPTOR in lookup_maybe_method() (GH-13865)
by Miss Islington (bot)
· 6 years ago
f72886a
bpo-37236: pragma optimize off for _Py_c_quot on Windows arm64 (GH-13983)
by Miss Islington (bot)
· 6 years ago
996e526
bpo-26219: Fix compiler warning in _PyCode_InitOpcache() (GH-13997) (GH-14000)
by Miss Islington (bot)
· 6 years ago
583ff84
bpo-37219: Remove erroneous optimization for differencing an empty set (GH-13965) (GH-13967)
by Miss Islington (bot)
· 6 years ago
6e05307
bpo-37138: fix undefined behaviour with memcpy() on NULL array (GH-13867)
by Miss Islington (bot)
· 6 years ago
dd492d9
[3.8] bpo-37170: Fix the cast on error in PyLong_AsUnsignedLongLongMask() (GH-13860) (GH-13891)
by Zackery Spytz
· 6 years ago
ea9f168
bpo-26219: Fix compiler warning in _PyCode_InitOpcache() (GH-13809)
by Victor Stinner
· 6 years ago
91234a1
bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884)
by Inada Naoki
· 6 years ago
1e375c6
bpo-36027: Really fix "incompatible pointer type" compiler warning (GH-13761)
by Petr Viktorin
· 6 years ago
be718c3
bpo-36974: add some assertions for PEP 590 (GH-13682)
by Jeroen Demeyer
· 6 years ago
7f4ae1b
bpo-37012: Clean up special cases in PyType_FromSpecWithBases slot assignments (GH-13496)
by Petr Viktorin
· 6 years ago
e584cbf
bpo-36027 bpo-36974: Fix "incompatible pointer type" compiler warnings (GH-13758)
by Petr Viktorin
· 6 years ago
fb9423f
bpo-36974: Make tp_call=PyVectorcall_Call work for inherited types (GH-13699)
by Petr Viktorin
· 6 years ago
3caf4de
Call PyObject_GC_UnTrack in structseq dealloc (GH-13751)
by Pablo Galindo
· 6 years ago
7ffcf84
bpo-37126: Allow structseq objects to be tracked by the GC (GH-13729)
by Pablo Galindo
· 6 years ago
c529967
bpo-36027: Extend three-argument pow to negative second argument (GH-13266)
by Mark Dickinson
· 6 years ago
bdbad71
bpo-20092. Use __index__ in constructors of int, float and complex. (GH-13108)
by Serhiy Storchaka
· 6 years ago
Next »