summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* #8030: more docstring fix for builtin types.Ezio Melotti2010-02-283-7/+7
* The set types can also be called without arguments.Georg Brandl2010-02-281-2/+4
* #8030: make builtin type docstrings more consistent: use "iterable" instead o...Georg Brandl2010-02-283-5/+5
* #7649: "u'%c' % char" now behaves like "u'%s' % char" and raises a UnicodeDec...Ezio Melotti2010-02-251-9/+18
* Issue #7309: Unchecked pointer access when converting UnicodeEncodeError, Uni...Eric Smith2010-02-241-36/+78
* Issue #7649: Fix u'%c' % char for character in range 0x80..0xFFVictor Stinner2010-02-231-1/+9
* Issue #6902: Fix problem with built-in types format incorrectly with 0 padding.Eric Smith2010-02-231-4/+7
* #7706: DONT_HAVE_ERRNO_H is no longer defined by configure (after rev.46819).Andrew M. Kuchling2010-02-221-1/+1
* Issue #7988: Fix default alignment to be right aligned for complex.__format__...Eric Smith2010-02-221-10/+40
* #7482: clarify error message in case of division by zero of float and complex...Ezio Melotti2010-02-222-4/+4
* Issue #5211: Fix complex type to avoid implicit calls toMark Dickinson2010-02-211-26/+45
* Silence more compiler warnings; fix an instance of potential undefined behav...Mark Dickinson2010-02-141-4/+5
* Silence some 'comparison between signed and unsigned' compiler warnings.Mark Dickinson2010-02-141-7/+8
* Issue #5677: Explicitly forbid write operations on read-only file objects,Antoine Pitrou2010-02-051-0/+32
* Issue #7385: Fix a crash in `MemoryView_FromObject` whenAntoine Pitrou2010-02-021-7/+5
* Issue #7767: Add new C-API function PyLong_AsLongLongAndOverflow, aMark Dickinson2010-01-301-0/+104
* Issue #7788: Fix a crash produced by deleting a list slice with hugeMark Dickinson2010-01-292-2/+4
* #7775: fixed docstring for rpartitionEzio Melotti2010-01-253-3/+3
* Issue #7561: Operations on empty bytearrays (such as `int(bytearray())`)Antoine Pitrou2010-01-171-17/+6
* Add note about usage of STRINGLIB_EMPTY.Georg Brandl2010-01-171-4/+5
* Fixed typoEzio Melotti2010-01-141-1/+1
* Sanitize bloom filter macrosAntoine Pitrou2010-01-132-14/+36
* Test commit to try to diagnose failures of the IA-64 buildbotAntoine Pitrou2010-01-131-2/+2
* Fix Windows build (re r77461)Antoine Pitrou2010-01-131-1/+1
* Issue #7622: Improve the split(), rsplit(), splitlines() and replace()Antoine Pitrou2010-01-1313-1442/+704
* Fixed repr of dictionary views.Alexandre Vassalotti2010-01-121-1/+2
* Issue #1967: Backport dictionary views.Alexandre Vassalotti2010-01-111-0/+505
* factor out __complex__ lookup code to fix another caseBenjamin Peterson2010-01-041-50/+44
* do correct lookup of the __complex__ methodBenjamin Peterson2010-01-041-8/+14
* Issue #7462: Implement the stringlib fast search algorithm for the `rfind`,Antoine Pitrou2010-01-028-148/+114
* Refactor some longobject internals: PyLong_AsDouble and _PyLong_AsScaledDoubleMark Dickinson2010-01-021-221/+146
* Issue #7534: Fix handling of nans, infinities, and negative zero in **Mark Dickinson2009-12-301-23/+74
* Issue #1811: Improve accuracy and consistency of true division for integers.Mark Dickinson2009-12-272-37/+277
* #6108: unicode(exception) and str(exception) should return the same messageEzio Melotti2009-12-241-0/+15
* Issue #7528: Backport PyLong_AsLongAndOverflow from py3k to trunk.Mark Dickinson2009-12-211-31/+101
* remove type_compare, since type_richcompare does the same trickBenjamin Peterson2009-12-161-10/+1
* Issue #1680159: unicode coercion during an 'in' operation was maskingR. David Murray2009-12-141-2/+0
* fix the ignoring of __cmp__ method on metaclasses #7491Benjamin Peterson2009-12-131-1/+5
* Issue #7466: segmentation fault when the garbage collector is calledAntoine Pitrou2009-12-121-1/+2
* substitute PyDict_Check() for PyObject_IsInstanceBenjamin Peterson2009-12-101-1/+1
* Avoid undefined behaviour due to overflow in i_divmod (Objects/intobject.c).Mark Dickinson2009-12-041-1/+10
* disable pymalloc tricks with the --with-valgrind option #2422Benjamin Peterson2009-12-031-0/+39
* Issue #7406: Fix some occurrences of potential signed overflow in intMark Dickinson2009-12-021-3/+6
* Issue #3382: Make '%F' and float.__format__('F') convert results to upper cas...Eric Smith2009-11-293-18/+0
* Include ieeefp.h (when available) in pyport.h instead of individually inMark Dickinson2009-11-282-8/+0
* Issue #7117, continued: Remove substitution of %g-style formatting forMark Dickinson2009-11-233-12/+0
* Remove restriction on precision when formatting floats. This is theMark Dickinson2009-11-232-114/+42
* #5037 proxy __unicode__ correctlyBenjamin Peterson2009-11-191-0/+17
* Issue 7263: Fix set.intersection() docstring.Raymond Hettinger2009-11-181-2/+2
* Issue #7117, continued: Change round implementation to use the correctly-rou...Mark Dickinson2009-11-181-0/+196