summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* #7112: Fix compilation warning in unicodetype_db.hAmaury Forgeot d'Arc2009-10-131-109/+109
* Issue #7084: Fix a (very unlikely) crash when printing a list from oneAntoine Pitrou2009-10-111-1/+6
* #1571184: makeunicodedata.py now generates the functions _PyUnicode_ToNumeric,Amaury Forgeot d'Arc2009-10-062-1765/+2877
* Style/consistency/nano-optimization nit: replace occurrences ofMark Dickinson2009-09-281-6/+6
* http://bugs.python.org/issue6836Kristján Valur Jónsson2009-09-281-1/+1
* http://bugs.python.org/issue6836Kristján Valur Jónsson2009-09-281-17/+87
* Issue #6713: Improve decimal int -> string conversions. Thanks GawainMark Dickinson2009-09-271-10/+28
* #6994: fix typo in enumerate docstringEzio Melotti2009-09-251-1/+1
* Silence MSVC compiler warnings.Mark Dickinson2009-09-211-2/+3
* backport keyword argument support for bytearray.decodeBenjamin Peterson2009-09-181-3/+4
* add keyword arguments support to str/unicode encode and decode #6300Benjamin Peterson2009-09-182-12/+20
* use macrosBenjamin Peterson2009-09-171-1/+1
* Issue #6922: Fix an infinite loop when trying to decode an invalidGeorg Brandl2009-09-171-1/+1
* Issue #6713: Improve performance of str(n) and repr(n) for integers nMark Dickinson2009-09-161-0/+119
* #6844: do not emit DeprecationWarnings on access if Exception.message has bee...Georg Brandl2009-09-161-18/+39
* Fix potential signed-overflow bug in _PyLong_Format; also fixMark Dickinson2009-09-131-9/+11
* Remove redundant assignmentMark Dickinson2009-09-061-1/+0
* Issue #6847: s/bytes/bytearray/ in some bytearray error messages. Thanks Hag...Mark Dickinson2009-09-061-4/+4
* Issue #6846: bytearray.pop was returning ints in the range [-128, 128)Mark Dickinson2009-09-061-1/+1
* remove the check that classmethod's argument is a callableBenjamin Peterson2009-09-012-10/+0
* Silence gcc 'comparison always false' warningMark Dickinson2009-08-282-2/+6
* #6707 fix a crash with dir() on an uninitialized moduleBenjamin Peterson2009-08-151-3/+5
* Issue 6330: Fix --enable-unicode=ucs4.Eric Smith2009-07-301-3/+20
* Issue 6573: Fix set.union() for cases where self is in the argument chain.Raymond Hettinger2009-07-271-1/+1
* Sync trunk and py3k versions of string formatting. Will manually merge into p...Eric Smith2009-07-271-0/+6
* clarifyBenjamin Peterson2009-07-251-1/+1
* Issue #6540: Fixed crash for bytearray.translate() with invalid parameters.Georg Brandl2009-07-221-3/+5
* must use _PyThreadState_Current so it isn't checked for NULL #6530Benjamin Peterson2009-07-211-4/+6
* Grow the allocated buffer in PyUnicode_EncodeUTF7 to avoid buffer overrun.Alexandre Vassalotti2009-07-071-2/+2
* only order comparisons are removed in py3k #6119Benjamin Peterson2009-07-021-6/+7
* Issue #6368: Fixed unused variable warning on Unix.Hirokazu Yamamoto2009-06-291-0/+2
* Issue #4856: Remove checks for win NT.Hirokazu Yamamoto2009-06-281-19/+11
* #2016 Fix a crash in function call when the **kwargs dictionary is mutatedAmaury Forgeot d'Arc2009-06-251-10/+11
* Issue 6329: Fix iteration for memoryviews.Raymond Hettinger2009-06-231-32/+51
* add underscoresBenjamin Peterson2009-06-161-2/+2
* Remove unused macro.Georg Brandl2009-06-161-1/+0
* Clear reference to the static PyExc_RecursionErrorInst in _PyExc_Fini.Alexandre Vassalotti2009-06-121-2/+2
* #6224: s/JPython/Jython/, and remove one link to a module nine years old.Georg Brandl2009-06-061-1/+1
* use the offical apiBenjamin Peterson2009-06-041-1/+1
* Fix compilation error with gcc 4.3.2Antoine Pitrou2009-06-011-1/+3
* #4547: When debugging a very large function, it was not alwaysAmaury Forgeot d'Arc2009-06-011-2/+2
* Uninitialized file type would lead to __exit__ lookup failure when site.pyAntoine Pitrou2009-05-311-0/+3
* Issue 5982: Classmethod and staticmethod expose wrapped function with __func__.Raymond Hettinger2009-05-291-2/+12
* plug ref leakBenjamin Peterson2009-05-271-4/+7
* correctly handle descrs with __missing__Benjamin Peterson2009-05-271-5/+6
* handle errors from _PyObject_LookupSpecial when __get__ failsBenjamin Peterson2009-05-253-3/+17
* Issue #6042:Jeffrey Yasskin2009-05-232-132/+132
* Issue 6089: str.format raises SystemError.Eric Smith2009-05-231-2/+3
* Issue #5829: don't raise OverflowError for complex('1e500'). Backport of r72...Mark Dickinson2009-05-201-9/+0
* Fix issue #1689458 by teaching frame_setlineno how to jump to the first line ofJeffrey Yasskin2009-05-201-14/+20