cpython/Objects
Miss Islington (bot) 58cbae2293 bpo-16055: Fixes incorrect error text for int('1', base=1000) (GH-4376) (#4389)
(cherry picked from commit 28b624825e)
2017-11-14 01:35:13 -08:00
..
clinic [3.6] bpo-20047: Make bytearray methods partition() and rpartition() rejecting (GH-4158) (#4162) 2017-10-29 12:24:45 +02:00
stringlib [3.6] bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0 (#3518) 2017-09-12 16:09:44 -07:00
README
abstract.c [3.6] bpo-31232: Backport custom print rshift message (GH-3155) 2017-08-19 16:59:38 +10:00
accu.c
boolobject.c
bytearrayobject.c [3.6] bpo-20047: Make bytearray methods partition() and rpartition() rejecting (GH-4158) (#4162) 2017-10-29 12:24:45 +02:00
bytes_methods.c [3.6] bpo-29549: Fixes docstring for str.index (GH-256) (GH-1028) 2017-04-09 15:17:06 -07:00
bytesobject.c [3.6] bpo-20047: Make bytearray methods partition() and rpartition() rejecting (GH-4158) (#4162) 2017-10-29 12:24:45 +02:00
capsule.c
cellobject.c fix indentation of comments in cellobject.c (closes #27011) 2016-05-12 23:12:21 -07:00
classobject.c method_call() and slot_tp_new() now uses fast call 2016-08-25 01:04:14 +02:00
codeobject.c [3.6] bpo-31393: Fix the use of PyUnicode_READY(). (GH-3451). (#3453) 2017-09-08 10:43:54 +03:00
complexobject.c bpo-29602: fix signed zero handling in complex constructor. (#203) (#206) 2017-02-20 21:59:30 +00:00
descrobject.c replace Py_(u)intptr_t with the c99 standard types 2016-09-06 13:47:26 -07:00
dict-common.h Add _PyDict_CheckConsistency() 2016-09-14 15:02:01 +02:00
dictnotes.txt
dictobject.c bpo-31095: fix potential crash during GC (GH-3195) 2017-09-04 12:31:09 +09:00
enumobject.c [3.6] bpo-31579: Fixed a possible leak in enumerate() with large indices. (GH-3753). (#3760) 2017-09-26 09:11:34 +03:00
exceptions.c [3.6] bpo-30697: Fix PyErr_NormalizeException() when no memory (GH-2327). (#4135) 2017-10-26 17:48:48 +02:00
fileobject.c Rename _PyObject_FastCall() to _PyObject_FastCallDict() 2016-08-22 22:48:54 +02:00
floatobject.c [3.6] bpo-31373: remove overly strict float range checks (GH-3486) (#3495) 2017-09-11 23:08:49 -07:00
frameobject.c Issue #27129: Replaced wordcode related magic constants with macros. 2016-09-11 13:48:15 +03:00
funcobject.c Issue #28139: Merge indentation fixes from 3.5 into 3.6 2016-09-17 07:59:14 +00:00
genobject.c Fix wrapping into StopIteration of return values in generators and coroutines (#644) (#647) 2017-03-12 17:04:06 -04:00
iterobject.c Rename _PyObject_FastCall() to _PyObject_FastCallDict() 2016-08-22 22:48:54 +02:00
listobject.c Expand the PySlice_GetIndicesEx macro. (#1023) (#1044) 2017-04-08 11:18:14 +03:00
listsort.txt Issue #27895: Spelling fixes (Contributed by Ville Skyttä). 2016-09-07 12:03:06 +00:00
lnotab_notes.txt bpo-28810: Update lnotab_notes.txt (GH-665) (GH-919) 2017-03-31 02:12:18 -07:00
longobject.c bpo-16055: Fixes incorrect error text for int('1', base=1000) (GH-4376) (#4389) 2017-11-14 01:35:13 -08:00
memoryobject.c Expand the PySlice_GetIndicesEx macro. (#1023) (#1044) 2017-04-08 11:18:14 +03:00
methodobject.c bpo-30524: Fix _PyStack_UnpackDict() (#1886) 2017-06-09 13:24:53 +02:00
moduleobject.c [3.6] bpo-31492: Fix assertion failures in case of a module with a bad __name__ attribute. (GH-3620). (#3773) 2017-09-27 07:33:00 +03:00
namespaceobject.c [3.6] bpo-31655: Validate keyword names in SimpleNamespace constructor. (GH-3909) (#3920) 2017-10-07 23:52:57 +03:00
object.c Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize 2016-11-20 09:13:07 +02:00
obmalloc.c bpo-31626: Fixed a bug in debug memory allocator. (GH-3844) (#4191) 2017-10-31 15:58:33 +02:00
odictobject.c Backport docstring improvements to OrderedDict. (GH-3470) 2017-09-10 18:11:18 -07:00
rangeobject.c bpo-28876: bool of large range raises OverflowError (#699) (#734) 2017-03-20 09:13:47 +02:00
setobject.c bpo-31095: fix potential crash during GC (GH-3195) 2017-09-04 12:31:09 +09:00
sliceobject.c bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1480) (#1529) 2017-05-10 19:00:15 +08:00
structseq.c Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize 2016-11-20 09:13:07 +02:00
tupleobject.c Expand the PySlice_GetIndicesEx macro. (#1023) (#1044) 2017-04-08 11:18:14 +03:00
typeobject.c [3.6] bpo-31393: Fix the use of PyUnicode_READY(). (GH-3451). (#3453) 2017-09-08 10:43:54 +03:00
typeslots.inc
typeslots.py Issue #26662: Set PYTHON_FOR_GEN in configure 2016-07-26 12:48:08 +02:00
unicodectype.c
unicodeobject.c bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (GH-4058) (#4059) 2017-10-20 17:41:29 +03:00
unicodetype_db.h Unicode 9.0.0 2016-09-14 23:53:47 -07:00
weakrefobject.c bpo-29347: Fix possibly dereferencing undefined pointers when creating weakref objects (#128) (#186) 2017-02-20 14:33:02 +08:00

README

Source files for various builtin objects