0
0
mirror of https://github.com/python/cpython.git synced 2024-12-01 11:15:56 +01:00
cpython/Objects
Antoine Pitrou b7d033db78 Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32) under 64-bit Windows.
(untested, because of Windows build issues under 3.x)
2012-05-16 14:39:36 +02:00
..
stringlib Issue #14624: UTF-16 decoding is now 3x to 4x faster on various inputs. 2012-05-15 23:48:04 +02:00
abstract.c Issue #2377: Make importlib the implementation of __import__(). 2012-04-14 14:10:13 -04:00
accu.c Issue #14387: Do not include accu.h from Python.h. 2012-03-22 14:38:16 +01:00
boolobject.c
bytearrayobject.c Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI. 2012-04-05 00:04:20 +02:00
bytes_methods.c
bytesobject.c Simplify and optimize formatlong() 2012-04-27 23:40:13 +02:00
capsule.c
cellobject.c
classobject.c
codeobject.c
complexobject.c
descrobject.c merge 3.2 (#14699) 2012-05-01 09:51:46 -04:00
dictnotes.txt Implement PEP 412: Key-sharing dictionaries (closes #13903) 2012-04-23 11:24:50 -04:00
dictobject.c Issue #14417: Mutating a dict during lookup now restarts the lookup instead of raising a RuntimeError (undoes issue #14205). 2012-05-13 20:48:01 +02:00
enumobject.c Issue #14288: Serialization support for builtin iterators. 2012-04-03 10:49:41 +00:00
exceptions.c Fix build failure. 2012-05-16 12:51:55 +02:00
fileobject.c
floatobject.c Issue #14435: Remove special block allocation code from floatobject.c 2012-03-30 09:18:15 +00:00
frameobject.c Issue #14385: Support other types than dict for __builtins__ 2012-04-19 00:57:45 +02:00
funcobject.c
genobject.c merge 3.2 (#14717) 2012-05-03 18:44:33 -04:00
iterobject.c Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI. 2012-04-05 00:04:20 +02:00
listobject.c Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI. 2012-04-05 00:04:20 +02:00
listsort.txt
lnotab_notes.txt
longobject.c long_to_decimal_string() and _PyLong_Format() check the consistency of newly 2012-04-26 00:37:21 +02:00
memoryobject.c
methodobject.c
moduleobject.c Issues #13959, 14647: Re-implement imp.reload() in Lib/imp.py. 2012-04-29 14:38:11 -04:00
object.c Implement PEP 412: Key-sharing dictionaries (closes #13903) 2012-04-23 11:24:50 -04:00
obmalloc.c
rangeobject.c Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32) under 64-bit Windows. 2012-05-16 14:39:36 +02:00
setobject.c Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI. 2012-04-05 00:04:20 +02:00
sliceobject.c
structseq.c
tupleobject.c Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI. 2012-04-05 00:04:20 +02:00
typeobject.c Use size_t, not ssize_t (issue #14801). 2012-05-14 14:44:37 +02:00
typeslots.inc
typeslots.py
unicodectype.c
unicodeobject.c Issue #14624: UTF-16 decoding is now 3x to 4x faster on various inputs. 2012-05-15 23:48:04 +02:00
unicodetype_db.h
weakrefobject.c