summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Issue #27867: Function PySlice_GetIndicesEx() is replaced with a macro ifSerhiy Storchaka2017-01-251-24/+54
* Issue #29337: Fixed possible BytesWarning when compare the code objects.Serhiy Storchaka2017-01-241-3/+3
* Fix grammar, typos and markup in documentation and code commentsMartin Panter2017-01-141-1/+1
* Issue #28969: Fixed race condition in C implementation of functools.lru_cache.Serhiy Storchaka2017-01-121-8/+23
* Issue #29145: Fix overflow checks in str.replace() and str.join().Xiang Zhang2017-01-101-6/+8
* Issue #29111: Fix memoryview signature.Stefan Krah2016-12-301-1/+1
* Issue #29073: bytearray formatting no longer truncates on first null byte.Serhiy Storchaka2016-12-281-1/+3
* Issue #28427: old keys should not remove new values fromAntoine Pitrou2016-12-271-25/+56
* Issue #29044: Fix a use-after-free in string '%c' formatter.Xiang Zhang2016-12-221-3/+4
* Issue #28147: Fix a memory leak in split-table dictionariesINADA Naoki2016-12-201-6/+15
* Issue #29000: Fixed bytes formatting of octals with zero padding in alternateSerhiy Storchaka2016-12-171-3/+2
* Revert changeset 1f31bf3f76f5 (issue5322) except tests.Serhiy Storchaka2016-12-141-28/+1
* Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code.Serhiy Storchaka2016-12-021-1/+28
* Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions.Serhiy Storchaka2016-12-051-2/+16
* Fixed an off-by-one error in _PyUnicode_EqualToASCIIString (issue #28701).Serhiy Storchaka2016-11-161-1/+1
* Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId.Serhiy Storchaka2016-11-162-6/+44
* Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-164-7/+42
* Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS XSerhiy Storchaka2016-11-121-1/+1
|\
| * Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS XSerhiy Storchaka2016-11-121-1/+1
| |\
| | * Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS XSerhiy Storchaka2016-11-121-1/+1
| | * Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.Serhiy Storchaka2015-12-021-0/+5
* | | ssue #27942: Fix memory leak in codeobject.cYury Selivanov2016-11-091-0/+2
* | | genobject: Remove unnecessary tp_free slots from aiter_wrapper and coro_wrapperYury Selivanov2016-11-091-2/+2
* | | make sure dict view types are initializedBenjamin Peterson2016-11-061-0/+9
* | | Issue #23996: Added _PyGen_SetStopIterationValue for safe raisingSerhiy Storchaka2016-11-061-10/+50
* | | Issue #28385: An error message when non-empty format spec is passed toSerhiy Storchaka2016-10-301-19/+9
* | | Backed out changeset 9f7505019767 (issue #27275).Serhiy Storchaka2016-10-301-7/+22
* | | Issue #27275: Fixed implementation of pop() and popitem() methods inSerhiy Storchaka2016-10-251-22/+7
* | | Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug b...Serhiy Storchaka2016-10-251-10/+2
|\ \ \ | |/ /
| * | Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug b...Serhiy Storchaka2016-10-251-10/+2
* | | remove extra PyErr_Format arguments (closes #28454)Benjamin Peterson2016-10-161-4/+4
* | | Issue #28379: Added sanity checks and tests for PyUnicode_CopyCharacters().Serhiy Storchaka2016-10-081-3/+7
* | | Issue #28376: The constructor of range_iterator now checks that step is not 0.Serhiy Storchaka2016-10-081-3/+11
* | | Issue #26906: Resolving special methods of uninitialized type now causesSerhiy Storchaka2016-10-081-5/+19
* | | Issue #18287: PyType_Ready() now checks that tp_name is not NULL.Serhiy Storchaka2016-10-071-0/+6
* | | Merge headsSerhiy Storchaka2016-10-041-12/+13
|\ \ \
| * | | ensure gc tracking is off when invoking weakref callbacks (closes #26617)Benjamin Peterson2016-10-041-12/+13
* | | | Issue #28350: String constants with null character no longer interned.Serhiy Storchaka2016-10-041-8/+8
|/ / /
* | | Issue #27942: String constants now interned recursively in tuples and frozens...Serhiy Storchaka2016-09-301-7/+45
* | | Issue #21578: Fixed misleading error message when ImportError called withSerhiy Storchaka2016-09-271-22/+24
* | | Issue #28203: Fix incorrect type in error message from complex(1.0, {2:3}). P...Mark Dickinson2016-09-241-6/+17
* | | Fix PyUnicode_FromFormatV() error handlingVictor Stinner2016-09-211-1/+1
* | | Issue #28189: dictitems_contains no longer swallows compare errors.Raymond Hettinger2016-09-191-1/+1
* | | Issue #28139: Fix messed up indentationMartin Panter2016-09-171-8/+12
* | | Issue #25270: Prevent codecs.escape_encode() from raising SystemError when an...Berker Peksag2016-09-161-5/+14
* | | Issue #28045: Fix comment in range_contains_long()Berker Peksag2016-09-121-1/+1
* | | Issue #25221: Fix corrupted result from PyLong_FromLong(0) when Python is com...Mark Dickinson2016-09-101-1/+2
* | | Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Martin Panter2016-09-075-5/+5
* | | supress coroutine warning when an exception is pending (#27968)Benjamin Peterson2016-09-071-12/+15
* | | promote some shifts to unsigned, so as not to invoke undefined behaviorBenjamin Peterson2016-09-071-3/+3