cpython/Objects
Alexandre Vassalotti 1aed624f7c Backport fast alternate io.BytesIO implementation.
Merged r62778, r62779, r62802, r62806, r62807, r62808, r62809, r62844,
r62846, r62952, r62956.
2008-05-09 21:49:43 +00:00
..
stringlib Bug #2388: Fix gcc warnings when compiling with --enable-unicode=ucs4. 2008-04-07 03:08:28 +00:00
abstract.c Prevent namespace pollution, add static for internal functions 2008-04-15 03:46:21 +00:00
boolobject.c Add a bunch of GIL release/acquire points in tp_print implementations and for 2007-09-17 03:28:34 +00:00
bufferobject.c Use PyErr_WarnPy3k throughout 2008-04-27 03:01:45 +00:00
bytes_methods.c Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from 2008-03-26 12:49:49 +00:00
bytesobject.c Backport fast alternate io.BytesIO implementation. 2008-05-09 21:49:43 +00:00
cellobject.c A little reformating of Py3k warnings 2008-04-27 18:40:21 +00:00
classobject.c Issue 2332: add new attribute names for instance method objects 2008-03-18 04:46:00 +00:00
cobject.c PEP 3123: Provide forward compatibility with Python 3.0, while keeping 2007-07-21 06:55:02 +00:00
codeobject.c A little reformating of Py3k warnings 2008-04-27 18:40:21 +00:00
complexobject.c I finally got the time to update and merge Mark's and my trunk-math branch. The patch is collaborated work of Mark Dickinson and me. It was mostly done a few months ago. The patch fixes a lot of loose ends and edge cases related to operations with NaN, INF, very small values and complex math. 2008-04-18 23:13:07 +00:00
descrobject.c Prevent namespace pollution, add static for internal functions 2008-04-15 03:46:21 +00:00
dictnotes.txt Patch #1397848: add the reasoning behind no-resize-on-shrinkage. 2007-02-15 09:51:35 +00:00
dictobject.c A little reformating of Py3k warnings 2008-04-27 18:40:21 +00:00
enumobject.c #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. 2007-12-19 02:37:44 +00:00
exceptions.c A little reformating of Py3k warnings 2008-04-27 18:40:21 +00:00
fileobject.c A little reformating of Py3k warnings 2008-04-27 18:40:21 +00:00
floatobject.c Issue #2801: fix bug in float.is_integer where ValueError 2008-05-09 16:14:15 +00:00
frameobject.c Implemented Martin's suggestion to clear the free lists during the garbage collection of the highest generation. 2008-02-14 12:47:33 +00:00
funcobject.c #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. 2007-12-19 02:37:44 +00:00
genobject.c #1473257: add generator.gi_code attribute that refers to 2008-01-26 14:14:20 +00:00
intobject.c I finally got the time to update and merge Mark's and my trunk-math branch. The patch is collaborated work of Mark Dickinson and me. It was mostly done a few months ago. The patch fixes a lot of loose ends and edge cases related to operations with NaN, INF, very small values and complex math. 2008-04-18 23:13:07 +00:00
iterobject.c PEP 3123: Provide forward compatibility with Python 3.0, while keeping 2007-07-21 06:55:02 +00:00
listobject.c A little reformating of Py3k warnings 2008-04-27 18:40:21 +00:00
listsort.txt typo fix 2006-08-01 16:24:30 +00:00
longobject.c I finally got the time to update and merge Mark's and my trunk-math branch. The patch is collaborated work of Mark Dickinson and me. It was mostly done a few months ago. The patch fixes a lot of loose ends and edge cases related to operations with NaN, INF, very small values and complex math. 2008-04-18 23:13:07 +00:00
methodobject.c A little reformating of Py3k warnings 2008-04-27 18:40:21 +00:00
moduleobject.c #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. 2007-12-19 02:37:44 +00:00
object.c Use PyErr_WarnPy3k throughout 2008-04-27 03:01:45 +00:00
obmalloc.c PEP 3123: Provide forward compatibility with Python 3.0, while keeping 2007-07-21 06:55:02 +00:00
rangeobject.c Remove unnecessary modulo division. 2008-02-08 22:30:04 +00:00
setobject.c Frozensets do not benefit from autoconversion. 2008-05-08 04:35:20 +00:00
sliceobject.c #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. 2007-12-19 02:37:44 +00:00
stringobject.c get rid of assert (size >= 0) now that an explicit if (size < 0) is in the code. 2008-04-10 19:50:36 +00:00
structseq.c Temporarily revert 59967 until GC can be added. 2008-01-15 05:39:59 +00:00
tupleobject.c Implemented Martin's suggestion to clear the free lists during the garbage collection of the highest generation. 2008-02-14 12:47:33 +00:00
typeobject.c Use PyErr_WarnPy3k throughout 2008-04-27 03:01:45 +00:00
unicodectype.c Patch 1494554: Update numeric properties to Unicode 4.1. 2006-05-27 08:36:52 +00:00
unicodeobject.c get rid of assert (size >= 0) now that an explicit if (size < 0) is in the code. 2008-04-10 19:50:36 +00:00
unicodetype_db.h Update Unicode database to Unicode 4.1. 2006-03-09 23:38:20 +00:00
weakrefobject.c #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. 2007-12-19 02:37:44 +00:00