Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/tags/v3.5.6
/
Objects
tag
25310a3628a2a4d655f0d854227611d2578f9f99
tagger
Larry Hastings <larry@hastings.org>
Thu Aug 02 09:23:31 2018
object
627d0c61ac96009450e3794a2401f244e56fcb79
Python 3.5.6
fd8614c
bpo-30657: Fix CVE-2017-1000158 (#4664)
by Miro Hrončok
· 8 years ago
0fcc033
bpo-31095: fix potential crash during GC (GH-2974) (#3196)
by INADA Naoki
· 8 years ago
44eb51e
[3.5] bpo-22207: Add checks for possible integer overflows in unicodeobject.c. (GH-2623) (#2659)
by Serhiy Storchaka
· 8 years ago
54ba940
[3.5] bpo-13617: Reject embedded null characters in wchar* strings. (GH-2302) (#2463)
by Serhiy Storchaka
· 8 years ago
94b169f
[3.5] bpo-30708: Add private C API function _PyUnicode_AsWideCharString(). (GH-2285) (GH-2443) (#2448)
by Serhiy Storchaka
· 8 years ago
a7c0264
[3.5] bpo-30730: Prevent environment variables injection in subprocess on Windows. (GH-2325) (#2361)
by Serhiy Storchaka
· 8 years ago
2f7f533
[3.5] bpo-27945: Fixed various segfaults with dict. (GH-1657) (#1678)
by Serhiy Storchaka
· 8 years ago
4a86fe9
[3.5] bpo-25794: Fix `type.__setattr__()` for non-interned attribute names. (GH-1652) (#1674)
by Serhiy Storchaka
· 8 years ago
639e295
bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1530) (#1480)
by Xiang Zhang
· 8 years ago
17db4b9
[3.5] bpo-29802: Fix the cleaning up issue in PyUnicode_FSDecoder(). (GH-1217) (#1219)
by Serhiy Storchaka
· 8 years ago
e63af29
[3.5] bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (GH-1096) (GH-1180) (#1182)
by Serhiy Storchaka
· 8 years ago
e63f8f2
bpo-29998: Pickling and copying ImportError now preserves name and path (#1010) (#1043)
by Serhiy Storchaka
· 8 years ago
fa25f16
Expand the PySlice_GetIndicesEx macro. (#1023) (#1045)
by Serhiy Storchaka
· 8 years ago
553275d
bpo-29941: Assert fixes (#886) (#956)
by T. Wouters
· 8 years ago
8b8bde4
bpo-29935: Fixed error messages in the index() method of tuple, list and deque (#887) (#907) (#909)
by Serhiy Storchaka
· 8 years ago
4276068
bpo-28876: bool of large range raises OverflowError (#699) (#735)
by Serhiy Storchaka
· 8 years ago
2c5b2c3
bpo-29116: Fix error messages for concatenating bytes and bytearray with unsupported type. (#709) (#724)
by Serhiy Storchaka
· 8 years ago
216803d
Fix wrapping into StopIteration of return values in generators and coroutines (#644) (#648)
by Yury Selivanov
· 8 years ago
0936a00
bpo-29602: fix signed zero handling in complex constructor. (#203) (#205)
by Mark Dickinson
· 8 years ago
66fa9d4
bpo-24274: fix comment in dictobject.c (GH-194)
by INADA Naoki
· 8 years ago
7c95a94
bpo-29347: Fix possibly dereferencing undefined pointers when creating weakref objects (#128) (#188)
by Xiang Zhang
· 8 years ago
06a4fcb
bpo-29438: Fixed use-after-free in key sharing dict (#40)
by INADA Naoki
· 9 years ago
b2a5be0
Issue #27867: Function PySlice_GetIndicesEx() is replaced with a macro if
by Serhiy Storchaka
· 9 years ago
713640c
Issue #29337: Fixed possible BytesWarning when compare the code objects.
by Serhiy Storchaka
· 9 years ago
536d70e
Fix grammar, typos and markup in documentation and code comments
by Martin Panter
· 9 years ago
6779652
Issue #28969: Fixed race condition in C implementation of functools.lru_cache.
by Serhiy Storchaka
· 9 years ago
b0541f4
Issue #29145: Fix overflow checks in str.replace() and str.join().
by Xiang Zhang
· 9 years ago
195319e
Issue #29111: Fix memoryview signature.
by Stefan Krah
· 9 years ago
c9ad8b7
Issue #29073: bytearray formatting no longer truncates on first null byte.
by Serhiy Storchaka
· 9 years ago
e10ca3a
Issue #28427: old keys should not remove new values from
by Antoine Pitrou
· 9 years ago
ea1cf87
Issue #29044: Fix a use-after-free in string '%c' formatter.
by Xiang Zhang
· 9 years ago
6165d55
Issue #28147: Fix a memory leak in split-table dictionaries
by INADA Naoki
· 9 years ago
b1a1619
Issue #29000: Fixed bytes formatting of octals with zero padding in alternate
by Serhiy Storchaka
· 9 years ago
49010ee
Revert changeset 1f31bf3f76f5 (issue5322) except tests.
by Serhiy Storchaka
· 9 years ago
5adfac2
Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code.
by Serhiy Storchaka
· 9 years ago
419967b
Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions.
by Serhiy Storchaka
· 9 years ago
292dd1b
Fixed an off-by-one error in _PyUnicode_EqualToASCIIString (issue #28701).
by Serhiy Storchaka
· 9 years ago
f5894dd
Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId.
by Serhiy Storchaka
· 9 years ago
f4934ea
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString.
by Serhiy Storchaka
· 9 years ago
6b4b6e9
Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X
by Serhiy Storchaka
· 9 years ago
84293af
Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X
by Serhiy Storchaka
· 9 years ago
b626643
Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X
by Serhiy Storchaka
· 9 years ago
d2fd359
ssue #27942: Fix memory leak in codeobject.c
by Yury Selivanov
· 9 years ago
33499b7
genobject: Remove unnecessary tp_free slots from aiter_wrapper and coro_wrapper
by Yury Selivanov
· 9 years ago
db87c99
make sure dict view types are initialized
by Benjamin Peterson
· 9 years ago
24411f8
Issue #23996: Added _PyGen_SetStopIterationValue for safe raising
by Serhiy Storchaka
· 9 years ago
d1af5ef
Issue #28385: An error message when non-empty format spec is passed to
by Serhiy Storchaka
· 9 years ago
0438683
Backed out changeset 9f7505019767 (issue #27275).
by Serhiy Storchaka
· 9 years ago
4832580
Issue #27275: Fixed implementation of pop() and popitem() methods in
by Serhiy Storchaka
· 9 years ago
839023f
Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug build.
by Serhiy Storchaka
· 9 years ago
77eede3
Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug build.
by Serhiy Storchaka
· 9 years ago
8d761ff
remove extra PyErr_Format arguments (closes #28454)
by Benjamin Peterson
· 9 years ago
9c0e1f8
Issue #28379: Added sanity checks and tests for PyUnicode_CopyCharacters().
by Serhiy Storchaka
· 9 years ago
44759bc
Issue #28376: The constructor of range_iterator now checks that step is not 0.
by Serhiy Storchaka
· 9 years ago
8ef3460
Issue #26906: Resolving special methods of uninitialized type now causes
by Serhiy Storchaka
· 9 years ago
de0574b
Issue #18287: PyType_Ready() now checks that tp_name is not NULL.
by Serhiy Storchaka
· 9 years ago
7fd9f4b
Merge heads
by Serhiy Storchaka
· 9 years ago
09f3d08
Issue #28350: String constants with null character no longer interned.
by Serhiy Storchaka
· 9 years ago
8f657c3
ensure gc tracking is off when invoking weakref callbacks (closes #26617)
by Benjamin Peterson
· 9 years ago
00a0fc1
Issue #27942: String constants now interned recursively in tuples and frozensets.
by Serhiy Storchaka
· 9 years ago
47dee11
Issue #21578: Fixed misleading error message when ImportError called with
by Serhiy Storchaka
· 9 years ago
613f8e5
Issue #28203: Fix incorrect type in error message from complex(1.0, {2:3}). Patch by Soumya Sharma.
by Mark Dickinson
· 9 years ago
1ddf53d
Fix PyUnicode_FromFormatV() error handling
by Victor Stinner
· 9 years ago
7eb1bec
Issue #28189: dictitems_contains no longer swallows compare errors.
by Raymond Hettinger
· 9 years ago
6d57fe1
Issue #28139: Fix messed up indentation
by Martin Panter
· 9 years ago
4a72a7b
Issue #25270: Prevent codecs.escape_encode() from raising SystemError when an empty bytestring is passed
by Berker Peksag
· 9 years ago
ed6224e
Issue #28045: Fix comment in range_contains_long()
by Berker Peksag
· 9 years ago
36820dd
Issue #25221: Fix corrupted result from PyLong_FromLong(0) when Python is compiled with NSMALLPOSINTS = 0.
by Mark Dickinson
· 9 years ago
0be894b
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
by Martin Panter
· 9 years ago
b88db87
supress coroutine warning when an exception is pending (#27968)
by Benjamin Peterson
· 9 years ago
33d2a49
promote some shifts to unsigned, so as not to invoke undefined behavior
by Benjamin Peterson
· 9 years ago
5a7d923
make sure to not call memcpy with a NULL second argument
by Benjamin Peterson
· 9 years ago
bdddb11
clear out f_gen during generator finalization (closes #27812)
by Benjamin Peterson
· 9 years ago
2f40ed4
do not allow _PyGen_Finalize to fail (closes #27811)
by Benjamin Peterson
· 9 years ago
7ea386e
Issue 19504: Change "customise" to "customize" American spelling.
by Raymond Hettinger
· 9 years ago
8682f57
Issue #27782: Fix m_methods handling in multiphase init
by Nick Coghlan
· 9 years ago
6902ddf
Fix a refleak in call_maybe()
by Victor Stinner
· 9 years ago
d925bd5
Fix a refleak in call_method()
by Victor Stinner
· 9 years ago
69332c1
Fix spelling and grammar in documentation and code comments
by Martin Panter
· 9 years ago
eb99570
Issue #27626: Spelling fixes in docs, comments and internal names
by Martin Panter
· 9 years ago
fd0d593
Issue #26662: Set PYTHON_FOR_GEN in configure
by Xavier de Gaye
· 9 years ago
e8db861
Issue #27581: Don’t rely on overflow wrapping in PySequence_Tuple()
by Martin Panter
· 9 years ago
371731e
Issue #27507: Check for integer overflow in bytearray.extend()
by Martin Panter
· 9 years ago
06cfb0c
Issue #27473: Fixed possible integer overflow in bytes and bytearray
by Serhiy Storchaka
· 9 years ago
537ad7a
#20647: Update dictobject.c comments to account for randomized string hashes.
by R David Murray
· 9 years ago
27007dc
fix refleaks in PyDict_SetItem error cases (closes #27248)
by Benjamin Peterson
· 9 years ago
af65872
Issue #27443: __length_hint__() of bytearray itearator no longer return
by Serhiy Storchaka
· 9 years ago
2275e62
Fix spelling errors in code comments
by Martin Panter
· 9 years ago
9305d83
Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded as
by Serhiy Storchaka
· 9 years ago
a6f6edb
Issue #27243: Fix __aiter__ protocol
by Yury Selivanov
· 9 years ago
484c913
Issue #27225: Fixed a reference leak in type_new when setting __new__ fails.
by Serhiy Storchaka
· 9 years ago
64a263a
Issue #20041: Fixed TypeError when frame.f_trace is set to None.
by Serhiy Storchaka
· 9 years ago
e26da7c
Issue #27171: Fix typos in documentation, comments, and test function names
by Martin Panter
· 9 years ago
a90a4a9
Issue #27125: Remove duplicated words from documentation and comments
by Martin Panter
· 9 years ago
8d56c02
Issue #27125: Fix various errors like “will [be] inherited”
by Martin Panter
· 9 years ago
c352620
backout 3c9512d8ac0d
by Benjamin Peterson
· 9 years ago
7bf36da
Issue #27039: Fixed bytearray.remove() for values greater than 127.
by Serhiy Storchaka
· 9 years ago
07451dd
fix indentation of comments in cellobject.c (closes #27011)
by Benjamin Peterson
· 9 years ago
ea36c94
Issue #23640: int.from_bytes() no longer bypasses constructors for subclasses.
by Serhiy Storchaka
· 9 years ago
21eb487
Issue #17765: weakref.ref() no longer silently ignores keyword arguments.
by Serhiy Storchaka
· 9 years ago
Next »