Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/tags/v3.6.15
/
Objects
tag
bfa8bdc7371032a5f2361dc4741f4a3998de5ee5
tagger
Ned Deily <nad@python.org>
Sat Sep 04 03:50:45 2021
object
b74b1f36993a4e1700869133f3be13dd60ef4e40
Python 3.6.15
dae5d72
bpo-35560: Remove assertion from format(float, "n") (GH-11288) (GH-23231)
by Miss Islington (bot)
· 4 years, 9 months ago
be6ec44
bpo-35444: Fix error handling when fail to look up builtin "getattr". (GH-11047) (GH-11107) (GH-11108)
by Miss Islington (bot)
· 7 years ago
8855d93
[3.6] bpo-35454: Fix miscellaneous minor issues in error handling. (GH-11077) (GH-11106)
by Serhiy Storchaka
· 7 years ago
2d6bc25
bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-11015) (GH-11020) (GH-11026)
by Serhiy Storchaka
· 7 years ago
0f9b668
bpo-35372: Fix the code page decoder for input > 2 GiB. (GH-10848)
by Miss Islington (bot)
· 7 years ago
77000bb
bpo-33012: Fix more invalid function cast warnings with gcc 8. (GH-10751) (GH-10796)
by Victor Stinner
· 7 years ago
d5c8bd8
bpo-33012: Fix signatures of METH_NOARGS functions. (GH-10736) (GH-10748)
by Miss Islington (bot)
· 7 years ago
29d2f3c
[3.6] bpo-33029: Fix signatures of getter and setter functions. (GH-10746) (GH-10749)
by Serhiy Storchaka
· 7 years ago
54fa83e
bpo-33954: Rewrite FILL() macro of unicodeobject.c (GH-10740)
by Victor Stinner
· 7 years ago
fc4a44b
bpo-33954: Fix _PyUnicode_InsertThousandsGrouping() (GH-10623) (GH-10718) (GH-10720)
by Victor Stinner
· 7 years ago
c9b3fc6
bpo-9263: _PyObject_Dump() detects freed memory (GH-10061) (GH-10662) (GH-10663)
by Victor Stinner
· 7 years ago
fdc485a
bpo-35214: Fix OOB memory access in unicode escape parser (GH-10506)
by Miss Islington (bot)
· 7 years ago
60cf265
bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503)
by Miss Islington (bot)
· 7 years ago
41fdbaa
Disable getc_unlocked() with MemorySanitizer. (GH-10499)
by Miss Islington (bot)
· 7 years ago
eff1c98
closes bpo-35204: Disable thread and memory sanitizers for address_in_range(). (GH-10442)
by Miss Islington (bot)
· 7 years ago
00093f6
Fix a possible crash in range.__reversed__(). (GH-10252)
by Miss Islington (bot)
· 7 years ago
8bb0371
bpo-34973: Fix crash in bytes constructor. (GH-9841)
by Miss Islington (bot)
· 7 years ago
f1b90e3
bpo-33712: OrderedDict only creates od_fast_nodes cache if needed (GH-7349). (GH-10001)
by Serhiy Storchaka
· 7 years ago
0d3dd9f
bpo-34574: Prevent OrderedDict iterators from exhaustion during pickling. (GH-9051)
by Miss Islington (bot)
· 7 years ago
a9274f7
bpo-1621: Avoid signed integer overflow in set_table_resize(). (GH-9059) (GH-9199)
by Miss Islington (bot)
· 7 years ago
08ba7eb
bpo-34974: Do not replace unexpected errors in bytes() and bytearray(). (GH-9852)
by Miss Islington (bot)
· 7 years ago
177254c
bpo-34910: Ensure that PyObject_Print() always returns -1 on error. (GH-9733)
by Miss Islington (bot)
· 7 years ago
526929b
bpo-34899: Fix a possible assertion failure due to int_from_bytes_impl() (GH-9705)
by Miss Islington (bot)
· 7 years ago
6580e52
bpo-34879: Fix a possible null pointer dereference in bytesobject.c (GH-9683)
by Miss Islington (bot)
· 7 years ago
d45a961
[3.6] bpo-34320: Fix dict(o) didn't copy order of dict subclass (GH-8624) (GH-9583)
by Miss Islington (bot)
· 7 years ago
ed74a25
Fix Tools/gdb/libpython.py
by Miss Islington (bot)
· 7 years ago
6a939c8
[3.6] Fix misleading mentions of tp_size in comments (GH-9137)
by Benjamin Peterson
· 7 years ago
3ee07432
bpo-25750: fix refcounts in type_getattro() (GH-6118) (GH-9088)
by Miss Islington (bot)
· 7 years ago
d60bdf2
closes bpo-34504: Remove the useless NULL check in PySequence_Check(). (GH-8935)
by Miss Islington (bot)
· 7 years ago
323a91b
closes bpo-34501: PyType_FromSpecWithBases: Check spec->name before dereferencing it. (GH-8930)
by Miss Islington (bot)
· 7 years ago
902f161
closes bpo-34468: Objects/rangeobject.c: Fix an always-false condition in range_repr() (GH-8880)
by Miss Islington (bot)
· 7 years ago
fbe359a
closes bpo-34477: Objects/typeobject.c: Add missing NULL check to type_init() (GH-8876)
by Miss Islington (bot)
· 7 years ago
945771b
bpo-34436: Fix check that disables overallocation for the last fmt specifier (GH-8826)
by Miss Islington (bot)
· 7 years ago
e77cdae
bpo-34435: Add missing NULL check to unicode_encode_ucs1(). (GH-8823)
by Miss Islington (bot)
· 7 years ago
cf30d5c
bpo-24618: Add a check in the code constructor. (GH-8283) (GH-8311)
by Serhiy Storchaka
· 7 years ago
e544d65
fix two typos in Objects/odictobject.c comments (GH-8040)
by Miss Islington (bot)
· 7 years ago
8de73d5
bpo-33786: Fix asynchronous generators to handle GeneratorExit in athrow() (GH-7467) (GH-7507)
by Yury Selivanov
· 7 years ago
7f4f94d
Fix typo in __mul__ and __rmul__ docstring (GH-6674)
by Miss Islington (bot)
· 7 years ago
d554699
bpo-33391: Fix refleak in set_symmetric_difference (GH-6670)
by Miss Islington (bot)
· 7 years ago
9a90826
bpo-33199: Initialize ma_version_tag in PyDict_Copy (GH-6341)
by Miss Islington (bot)
· 7 years ago
f86b098
Fix typo and edit for clarity in the docstrings of sys.float_info. (GH-2251)
by Miss Islington (bot)
· 7 years ago
1da0479
bpo-32374: m_traverse may be called with m_state=NULL (GH-5140)
by Miss Islington (bot)
· 7 years ago
cf61a81
[3.7] bpo-17288: Prevent jumps from 'return' and 'exception' trace events. (GH-5928)
by Miss Islington (bot)
· 7 years ago
20ac11a
[3.6] bpo-33026: Fix jumping out of "with" block by setting f_lineno. (GH-6026). (GH-6074) (GH-6075)
by Miss Islington (bot)
· 7 years ago
fbf7aac
bpo-18533: Avoid RecursionError from repr() of recursive dictview (GH-4823)
by Miss Islington (bot)
· 7 years ago
4731634
bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995)
by INADA Naoki
· 8 years ago
310b424
bpo-32827: Fix usage of _PyUnicodeWriter_Prepare() in decoding errors handler. (GH-5636)
by Miss Islington (bot)
· 8 years ago
c90a5de
[3.6] bpo-32746: Fix multiple typos (GH-5144) (GH-5522)
by Terry Jan Reedy
· 8 years ago
688b6de
bpo-32137: The repr of deeply nested dict now raises a RecursionError (GH-4570) (GH-4689)
by Miss Islington (bot)
· 8 years ago
ea94fce
[3.6] bpo-32583: Fix possible crashing in builtin Unicode decoders (GH-5325) (#5459)
by Xiang Zhang
· 8 years ago
05f91a4
[3.6] Revert "bpo-32690: Preserve order of locals() (GH-5379) (#5390)"
by Nick Coghlan
· 8 years ago
9105879
bpo-32690: Preserve order of locals() (GH-5379) (#5390)
by Miss Islington (bot)
· 8 years ago
b3b4b81
bpo-32685: Improve suggestion for print statement (GH-5380)
by Miss Islington (bot)
· 8 years ago
d7274c6
Fix wrong assert in unicodeobject (GH-5340)
by Miss Islington (bot)
· 8 years ago
4002d5d
[3.6] bpo-32028: Fix suggestions for indented print statements (GH-5249)
by Miss Islington (bot)
· 8 years ago
051650a
Removed unnecesssary bit inversion which doesn't improve dispersion statistics (GH-5235) (#5236)
by Miss Islington (bot)
· 8 years ago
e7dbd06
bpo-26163: Frozenset hash improvement (GH-5194) (#5198)
by Miss Islington (bot)
· 8 years ago
b92c159
[3.6] bpo-32555: Fix locale encodings (#5193)
by Victor Stinner
· 8 years ago
78e43a5
Fix outdated comment in typeobject.c (GH-5090)
by Miss Islington (bot)
· 8 years ago
30a6bc8
bpo-31619: Fixed integer overflow in converting huge strings to int. (GH-3884) (#4690)
by Miss Islington (bot)
· 8 years ago
c8f32aa
[3.6] bpo-32176: Set CO_NOFREE in the code object constructor (GH-4684)
by Nick Coghlan
· 8 years ago
dedcbee
[3.6] bpo-30923, bpo-31279: Fix GCC warnings (#4620)
by Victor Stinner
· 8 years ago
58cbae2
bpo-16055: Fixes incorrect error text for int('1', base=1000) (GH-4376) (#4389)
by Miss Islington (bot)
· 8 years ago
ece5659
bpo-31626: Fixed a bug in debug memory allocator. (GH-3844) (#4191)
by Miss Islington (bot)
· 8 years ago
9ea5a3a
[3.6] bpo-20047: Make bytearray methods partition() and rpartition() rejecting (GH-4158) (#4162)
by Serhiy Storchaka
· 8 years ago
4b27d51
[3.6] bpo-30697: Fix PyErr_NormalizeException() when no memory (GH-2327). (#4135)
by xdegaye
· 8 years ago
1e78ed6
bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (GH-4058) (#4059)
by Miss Islington (bot)
· 8 years ago
cae6e47
[3.6] bpo-31655: Validate keyword names in SimpleNamespace constructor. (GH-3909) (#3920)
by Miss Islington (bot)
· 8 years ago
b5a630f
[3.6] bpo-31619: Fixed a ValueError when convert a string with large number of underscores (GH-3827) (#3863)
by Miss Islington (bot)
· 8 years ago
f0db2df
[3.6] bpo-31492: Fix assertion failures in case of a module with a bad __name__ attribute. (GH-3620). (#3773)
by Serhiy Storchaka
· 8 years ago
d6a3562
[3.6] bpo-31579: Fixed a possible leak in enumerate() with large indices. (GH-3753). (#3760)
by Serhiy Storchaka
· 8 years ago
c0e7736
[3.6] bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0 (#3518)
by Victor Stinner
· 8 years ago
cb356c2
[3.6] bpo-31373: remove overly strict float range checks (GH-3486) (#3495)
by Benjamin Peterson
· 8 years ago
2a0f7c3
Backport docstring improvements to OrderedDict. (GH-3470)
by Henk-Jaap Wagenaar
· 8 years ago
ddb536b
[3.6] bpo-31393: Fix the use of PyUnicode_READY(). (GH-3451). (#3453)
by Serhiy Storchaka
· 8 years ago
b036232
[3.6] fixes bpo-31373: fix undefined floating-point demotions (GH-3396) (#3424)
by Miss Islington (bot)
· 8 years ago
3b9d444
[3.6] bpo-30662: fixed OrderedDict.__init__ docstring re PEP 468 (GH-2179) (GH-3370)
by Mariatta
· 8 years ago
2eea952
bpo-31095: fix potential crash during GC (GH-3195)
by INADA Naoki
· 8 years ago
680f04a
bpo-31161: only check for parens error for SyntaxError (#3083)
by Martijn Pieters
· 8 years ago
1a05e87
[3.6] bpo-31232: Backport custom print rshift message (GH-3155)
by Nick Coghlan
· 8 years ago
f08b2be4
[3.6] bpo-30978: str.format_map() now passes key lookup exceptions through. (GH-2790) (#2992)
by Serhiy Storchaka
· 8 years ago
82a9075
[3.6] bpo-22207: Add checks for possible integer overflows in unicodeobject.c. (GH-2623) (#2658)
by Serhiy Storchaka
· 8 years ago
bfdc6fd
[3.6] bpo-30597: Show expected input in custom 'print' error message. (GH-2531)
by Nick Coghlan
· 8 years ago
0834905
[3.6] bpo-13617: Reject embedded null characters in wchar* strings. (GH-2302) (#2462)
by Serhiy Storchaka
· 8 years ago
26daad4
bpo-30704, bpo-30604: Fix memleak in code_dealloc() (#2455) (#2456)
by Victor Stinner
· 8 years ago
0edffa3
[3.6] bpo-30708: Check for null characters in PyUnicode_AsWideCharString(). (GH-2285) (#2443)
by Serhiy Storchaka
· 8 years ago
e713575
[3.6] bpo-30730: Prevent environment variables injection in subprocess on Windows. (GH-2325) (#2360)
by Serhiy Storchaka
· 8 years ago
2997fec
[3.6] bpo-30604: Move co_extra_freefuncs to interpreter state to avoid crashes in threads (#2015)
by Dino Viehland
· 8 years ago
f0ff849
bpo-30524: Fix _PyStack_UnpackDict() (#1886)
by Victor Stinner
· 8 years ago
564398a
[3.6] bpo-27945: Fixed various segfaults with dict. (GH-1657) (#1677)
by Serhiy Storchaka
· 8 years ago
193f7e0
[3.6] bpo-25794: Fix `type.__setattr__()` for non-interned attribute names. (GH-1652) (#1673)
by Serhiy Storchaka
· 8 years ago
98b49a0
bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1480) (#1529)
by Xiang Zhang
· 8 years ago
7a113a0
bpo-29802: Fix the cleaning up issue in PyUnicode_FSDecoder(). (#1217)
by Serhiy Storchaka
· 8 years ago
df5df13
[3.6] bpo-12414: Update code_sizeof() to take in account co_extra memory. (#1168) (#1198)
by Dong-hee Na
· 8 years ago
680fea4
bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096) (#1180)
by Serhiy Storchaka
· 8 years ago
577fc04
[3.6] bpo-29549: Fixes docstring for str.index (GH-256) (GH-1028)
by Mariatta
· 8 years ago
af685f9
bpo-29998: Pickling and copying ImportError now preserves name and path (#1010) (#1042)
by Serhiy Storchaka
· 8 years ago
c26b19d
Expand the PySlice_GetIndicesEx macro. (#1023) (#1044)
by Serhiy Storchaka
· 8 years ago
90e3518
bpo-29941: Assert fixes (#886) (#955)
by T. Wouters
· 8 years ago
efde51a
bpo-29949: Fix set memory usage regression (GH-945)
by INADA Naoki
· 8 years ago
Next »