summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Fix a wrong struct field assignment (docstring as closure).Georg Brandl2009-03-311-1/+1
* Issue #532631: Apply floatformat changes to unicodeobject.cMark Dickinson2009-03-291-0/+9
* Issue #532631: Add paranoid check to avoid potential buffer overflowMark Dickinson2009-03-291-1/+10
* Issue #532631: Replace confusing fabs(x)/1e25 >= 1e25 testMark Dickinson2009-03-293-3/+3
* The tracking statistics were actually too pessimisticAntoine Pitrou2009-03-232-3/+4
* Issue #4688: Add a heuristic so that tuples and dicts containing onlyAntoine Pitrou2009-03-232-1/+135
* Issue #5512: speed up the long division algorithm for Python longs.Mark Dickinson2009-03-231-94/+152
* There is no macro named SIZEOF_SSIZE_T. Should use SIZEOF_SIZE_T instead.Hirokazu Yamamoto2009-03-211-1/+1
* Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms.Mark Dickinson2009-03-201-0/+49
* fix strange errors when setting attributes on tracebacks #4034Benjamin Peterson2009-03-181-1/+11
* Issue 4474: On platforms with sizeof(wchar_t) == 4 andMark Dickinson2009-03-181-0/+58
* Fix a small nit in the error message if bool() falls back on __len__ and it r...Georg Brandl2009-03-151-1/+5
* fix tuple.index() error message #5495Benjamin Peterson2009-03-151-1/+1
* Issue 5237, Allow auto-numbered replacement fields in str.format() strings.Eric Smith2009-03-141-44/+129
* fix funky indentationBenjamin Peterson2009-03-081-4/+4
* Fixed memory leak on failure.Hirokazu Yamamoto2009-03-051-1/+1
* Replace long with twodigits, to avoid dependingMark Dickinson2009-02-251-1/+1
* Issue #5341: Fix a variety of spelling errors.Mark Dickinson2009-02-214-4/+4
* Issue #5247: Improve error message when unknown format codes are used when us...Eric Smith2009-02-201-17/+31
* A few more minor fixes in longobject.cMark Dickinson2009-02-151-5/+4
* Issue #5260: Various portability and standards compliance fixes, optimizationsMark Dickinson2009-02-151-46/+35
* Fix compiler warning (gcc)Antoine Pitrou2009-02-131-1/+1
* Issue #5186: Reduce hash collisions for objects with no __hash__ method byAntoine Pitrou2009-02-131-15/+7
* Fix warnings GCC emits where the argument of PyErr_Format is a single variable.Georg Brandl2009-02-131-3/+3
* Issue #5175: PyLong_AsUnsignedLongLong now raises OverflowError forMark Dickinson2009-02-101-1/+1
* Issue 4804. Add a function to test the validity of file descriptors on Windo...Kristján Valur Jónsson2009-02-101-34/+0
* Issue #789290: make sure that hash(2**63) == hash(2.**63) on 64-bitMark Dickinson2009-02-081-1/+1
* Remove redundant assignment in _PyObject_LengthHintMark Dickinson2009-02-081-1/+1
* issue 4804: Provide checks for the format string of strftime, and for the "m...Kristján Valur Jónsson2009-02-041-1/+88
* Validate that __length_hint__ returns a usable result.Raymond Hettinger2009-02-031-1/+1
* Issue 1242657: list(obj) can swallow KeyboardInterrupt.Raymond Hettinger2009-02-023-14/+27
* fix indentation in commentBenjamin Peterson2009-01-311-2/+2
* fix indentation; looks like all I managed to do the first time is make things...Benjamin Peterson2009-01-311-2558/+2558
* fix indentationBenjamin Peterson2009-01-311-2/+2
* completely detabify unicodeobject.cBenjamin Peterson2009-01-311-3010/+3010
* Fix comment.Mark Dickinson2009-01-261-3/+3
* Fix undefined behaviour (left shift of negative value) in long_hash. Also,Mark Dickinson2009-01-261-9/+10
* No need for carry to be type twodigits in _PyLong_AsByteArray; digit is large...Mark Dickinson2009-01-251-1/+1
* Fixed compile error on windows.Hirokazu Yamamoto2009-01-251-1/+1
* fix building the core with --disable-unicodeBenjamin Peterson2009-01-253-17/+48
* Issue #4393: fix 3 classes of potential portability problems in longobject.c:Mark Dickinson2009-01-241-23/+20
* fix urlBenjamin Peterson2009-01-201-1/+1
* #4077: No need to append \n when calling Py_FatalErrorAmaury Forgeot d'Arc2009-01-171-1/+1
* #4930: Slightly cleaner (and faster) code in type creation:Amaury Forgeot d'Arc2009-01-171-2/+2
* Issue #4935: The overflow checking code in the expandtabs() method commonAntoine Pitrou2009-01-131-37/+30
* #3720: Interpreter crashes when an evil iterator removes its own next function.Amaury Forgeot d'Arc2009-01-123-2/+19
* Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t.Martin v. Löwis2009-01-074-12/+18
* Issue #3680: Reference cycles created through a dict, set or deque iterator d...Antoine Pitrou2009-01-012-12/+29
* Issue #4701: implicitly call PyType_Ready from PyObject_HashNick Coghlan2008-12-301-0/+11
* #4764 set IOError.filename when trying to open a directory on POSIX platformsBenjamin Peterson2008-12-291-2/+2