summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
...
* Issue #8627: Fix "XXX undetected error" from unchecked PyErr_WarnPy3k return.Mark Dickinson2010-06-051-4/+10
* Issue #8627: remove out-of-date warning about overriding __cmp__Mark Dickinson2010-06-051-7/+0
* _PyObject_LookupSpecial returns a new referenceBenjamin Peterson2010-06-051-0/+1
* fix ref countingBenjamin Peterson2010-06-051-1/+1
* implement object.__format__ with PyObject_FormatBenjamin Peterson2010-06-051-12/+1
* remove PyType_Ready call; float should be initialized in interpreter startupBenjamin Peterson2010-06-051-6/+1
* properly lookup the __format__ special methodBenjamin Peterson2010-06-051-21/+11
* Issue #8748: Fix incorrect results from comparisons between an integerMark Dickinson2010-05-301-9/+54
* Remove declaration for unused variable.Mark Dickinson2010-05-301-1/+0
* Issue #5211: Complete removal of implicit coercions for the complexMark Dickinson2010-05-301-19/+2
* #8635: document enumerate() start parameter in docstring.Georg Brandl2010-05-221-3/+4
* Issue #7079: Fix a possible crash when closing a file object while usingAntoine Pitrou2010-05-171-2/+4
* Wrap multiline macros in a 'do {} while(0)', for safety.Mark Dickinson2010-05-091-37/+43
* Post-detabification cleanup: whitespace fixes and long line rewraps only.Mark Dickinson2010-05-091-159/+155
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-0934-37897/+37897
* Issue #8659: Remove redundant ABS calls. Thanks Daniel Stutzbach.Mark Dickinson2010-05-081-5/+2
* Add back in a line that was unneeded which advanced a pointer, but commentedBrett Cannon2010-05-061-0/+1
* Remove an unneeded assignment.Brett Cannon2010-05-051-2/+2
* Remove an unneeded variable assignment.Brett Cannon2010-05-051-2/+1
* Remove an unneeded variable.Brett Cannon2010-05-051-2/+0
* Remove an unneeded variable increment.Brett Cannon2010-05-051-1/+0
* Issue #8404: Fix set operations on dictionary views.Alexandre Vassalotti2010-05-041-3/+6
* Pull a NULL pointer check up to cover more cases in the function.Brett Cannon2010-05-041-2/+4
* Remove an unneeded variable and assignment.Brett Cannon2010-05-041-3/+2
* Improve error message from nb_int returning a non-integer, in various PyInt_A...Mark Dickinson2010-05-021-4/+4
* Issue 8436: set.__init__ accepts keyword argsRaymond Hettinger2010-04-181-0/+2
* tiny simplificationBenjamin Peterson2010-04-161-2/+1
* have a clear error when passing something > sys.maxsize to bytearrayBenjamin Peterson2010-04-161-7/+11
* Issue #8328: Silence Visual Studio warnings.Stefan Krah2010-04-071-6/+6
* Silence a 'comparison between signed and unsigned integer expressions' gcc wa...Mark Dickinson2010-04-061-1/+1
* Issue #8259: Get rid of 'outrageous left shift count' error whenMark Dickinson2010-04-061-14/+6
* Use a better NaN test in _Py_HashDouble as well.Mark Dickinson2010-04-051-3/+6
* Use a more robust infinity check in _Py_HashDouble.Mark Dickinson2010-04-051-3/+3
* Silence a compiler warning.Raymond Hettinger2010-04-031-1/+1
* more _PyString_Resize error checkingBenjamin Peterson2010-04-032-12/+18
* always check _PyString_Resize for errorBenjamin Peterson2010-04-021-10/+12
* Issue 7994: Make object.__format__ with a non-empty format string a PendingDe...Eric Smith2010-04-022-14/+62
* Capsule-related changes:Larry Hastings2010-04-021-0/+20
* Issue #8268: Old-style classes (not just instances) now support weakAntoine Pitrou2010-03-311-1/+4
* #7643: Unicode codepoints VT (0x0B) and FF (0x0C) are linebreaks according to...Florent Xicluna2010-03-302-6/+11
* Backported PyCapsule from 3.1, and converted most uses ofLarry Hastings2010-03-253-10/+329
* Issue #1583863: An unicode subclass can now override the __str__ methodVictor Stinner2010-03-221-1/+1
* Add support for weak references to code objects. This will be used by an opti...Collin Winter2010-03-181-2/+5
* Issue #8024: Update the Unicode database to 5.2Florent Xicluna2010-03-181-1020/+1241
* Issue #7818: set().test_c_api() doesn't expect a set('abc'), modify the set.Victor Stinner2010-03-131-1/+15
* #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