summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* Silence another MSVC warning about unary minus.Mark Dickinson2009-11-161-1/+1
* Silence MSVC warning about unary minus applied to unsigned type.Mark Dickinson2009-11-161-1/+1
* Issue #7228: Add '%lld' and '%llu' support to PyFormat_FromString,Mark Dickinson2009-11-151-12/+59
* Avoid signed overflow in some xrange calculations, and extendMark Dickinson2009-11-151-34/+44
* grant list.index() a more informative error message #7252Benjamin Peterson2009-11-021-2/+16
* prevent a rather unlikely segfaultBenjamin Peterson2009-11-021-2/+8
* Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod inMark Dickinson2009-10-261-16/+29
* Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod inMark Dickinson2009-10-261-35/+24
* Finished removing _PyOS_double_to_string, as mentioned in issue 7117.Eric Smith2009-10-262-17/+28
* Start to remove _PyOS_double_to_string, as mentioned in issue 7117.Eric Smith2009-10-261-22/+36
* Issue #1087418: Small performance boost for bitwise operations on longs.Mark Dickinson2009-10-251-66/+100
* Removed unused function PyFloat_AsStringEx. It is unused in floatobject.c, an...Eric Smith2009-10-241-11/+0
* rewrite for style, clarify, and commentsBenjamin Peterson2009-10-221-12/+15
* whitespaceBenjamin Peterson2009-10-221-1/+1
* Removed usage of unsafe PyFloat_AsString.Eric Smith2009-10-161-7/+13
* Issue #7142: Fix uses of unicode in memoryview objectsMark Dickinson2009-10-151-2/+2
* only clear a module's __dict__ if the module is the only one with a reference...Benjamin Peterson2009-10-151-1/+4
* Fix missing semicolonMark Dickinson2009-10-151-1/+1
* #7116: str.join() takes an iterable.Georg Brandl2009-10-142-4/+4
* #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