summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* Merged revisions 59056-59076 via svnmerge fromChristian Heimes2007-11-201-2/+19
* Merged revisions 59005-59040 via svnmerge fromChristian Heimes2007-11-183-34/+79
* Fixed some build issues and updated docs.Christian Heimes2007-11-172-3/+3
* Found another memory leak in longrangeiter. And redo the previous correctionAmaury Forgeot d'Arc2007-11-152-4/+2
* Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller2007-11-155-12/+12
* Correct a memory leak: the range() object was not properly freed.Amaury Forgeot d'Arc2007-11-152-0/+4
* Fix for #1415 pythonw.exe fails because std streams a missingChristian Heimes2007-11-131-1/+1
* Let's do as Guido says and return None instead of -1Christian Heimes2007-11-121-3/+2
* Stop Python code from instantiating a new stdprinter with sys.stderr.__class__()Christian Heimes2007-11-121-11/+90
* Merged revisions 58930-58938 via svnmerge fromChristian Heimes2007-11-121-4/+14
* Merged revisions 58886-58929 via svnmerge fromGuido van Rossum2007-11-104-10/+160
* Bug #1415Christian Heimes2007-11-101-2/+2
* Fixed memoryview constructor. It allowed arbitrary keyword arguments. The bug...Christian Heimes2007-11-081-3/+8