summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
...
* Issue #1393: object_richcompare() returns NotImplemented instead ofGuido van Rossum2008-01-061-1/+4
* Some VS 6.0 compatibility fixes from Hirokazu Yamamoto which are also useful ...Christian Heimes2008-01-041-1/+1
* Merged revisions 59680-59695 via svnmerge fromChristian Heimes2008-01-041-0/+3
* Merged revisions 59666-59679 via svnmerge fromChristian Heimes2008-01-031-1/+1
* Merged revisions 59628-59641 via svnmerge fromChristian Heimes2008-01-011-0/+1
* Merge changes from 59576 from trunk to p3yk branch; these were skippedGuido van Rossum2008-01-011-13/+16
* Drop _PyLong_FitsInLong. Fixes #1666.Martin v. Löwis2007-12-202-34/+36
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-1924-575/+575
* Merged revisions 59541-59561 via svnmerge fromChristian Heimes2007-12-192-2/+67
* Merged revisions 59512-59540 via svnmerge fromChristian Heimes2007-12-171-5/+5
* Merged revisions 59488-59511 via svnmerge fromChristian Heimes2007-12-151-33/+70
* Issue #1587: Added instancemethod wrapper for PyCFunctions. The Python C APIChristian Heimes2007-12-111-7/+248
* Merged revisions 59450-59464 via svnmerge fromChristian Heimes2007-12-111-1/+12
* Issue #1580: New free format floating point representation based on "Floating...Christian Heimes2007-12-102-2/+707
* Fixed issue #1564: The set implementation should special-case PyUnicode inste...Christian Heimes2007-12-104-44/+40
* typoSkip Montanaro2007-12-091-1/+1
* Fixed a bug found by Marcin KowalczykChristian Heimes2007-12-081-1/+1
* Merged revisions 59407-59422 via svnmerge fromChristian Heimes2007-12-081-19/+44
* Merged revisions 59376-59406 via svnmerge fromChristian Heimes2007-12-083-54/+41
* Removed PyInt_GetMax and sys.maxintChristian Heimes2007-12-041-6/+0
* Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.Martin v. Löwis2007-12-044-11/+47
* Fix issue #1553: An errornous __length_hint__ can make list() raise aAlexandre Vassalotti2007-12-042-4/+6
* Remove a few tab characters introduced by r59314.Alexandre Vassalotti2007-12-041-3/+3
* Issue #1283: Allow any iterable of integers to be passed toAlexandre Vassalotti2007-12-041-18/+71
* Add an errors parameter to open() and TextIOWrapper() to specify error handling.Guido van Rossum2007-12-032-3/+5
* Merged revisions 59275-59303 via svnmerge fromChristian Heimes2007-12-032-2/+4
* Reverting last commit. I had some staled data from an attempted svnmerge in m...Christian Heimes2007-12-031-2/+2
* Patch #1537 from Chad AustinChristian Heimes2007-12-031-2/+2
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-0222-123/+123
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-023-5/+5
* Merged revisions 59245-59254 via svnmerge fromChristian Heimes2007-12-011-0/+47
* Rename the internal name of dictproxy -> dict_proxy,Guido van Rossum2007-11-301-1/+1
* Partial fix for bug #1306Christian Heimes2007-11-301-1/+8
* Added all PyTypeObjects to the appropriate header files.Christian Heimes2007-11-297-43/+25
* Merged revisions 59212-59225 via svnmerge fromGuido van Rossum2007-11-291-0/+4
* Removed iter* methods from dictproxy.Christian Heimes2007-11-291-24/+0
* Merged revisions 59202-59211 via svnmerge fromChristian Heimes2007-11-281-9/+15
* Added view and iterator types to collections / _abcollChristian Heimes2007-11-286-9/+9
* #1496: revert str.translate() to the old version, and addGeorg Brandl2007-11-271-46/+104
* Removed the API to create unbound methods and simplified the API for bound me...Christian Heimes2007-11-272-138/+38
* Merged revisions 59107-59186 via svnmerge fromGuido van Rossum2007-11-261-1/+6
* Patch from Georg Brandl and me for #1493Christian Heimes2007-11-251-2/+4
* Remove unused variable.Georg Brandl2007-11-251-1/+0
* Use proper API for iter.__next__().Georg Brandl2007-11-241-8/+3
* CleanupChristian Heimes2007-11-231-1/+0
* Just inline a function, and discover that it can only raise an exception.Amaury Forgeot d'Arc2007-11-221-14/+7
* Removed blocks from several functions in unicodeobject and stringobject where...Christian Heimes2007-11-222-93/+12
* Typo in bytes.replace(): the buffer interface was always used.Amaury Forgeot d'Arc2007-11-221-1/+1
* PyString_AsString is permissive and accepts unicode strings.Amaury Forgeot d'Arc2007-11-222-3/+3
* Rename buffer -> bytearray.Guido van Rossum2007-11-213-40/+40