summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-0612-1805/+862
* Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success.Christian Heimes2007-11-041-4/+8
* Patch 1171 by mfenniak -- allow subclassing of bytes.Guido van Rossum2007-11-031-4/+11
* Fixes for issue 1752184, ensuring type objects are always createdGuido van Rossum2007-11-021-3/+12
* Merged revisions 58221-58741 via svnmerge fromGuido van Rossum2007-11-017-124/+189
* Minor correction to the stdprinter object.Guido van Rossum2007-10-301-2/+4
* Patch 1352 (continued in issue 1329) by Christian Heimes.Guido van Rossum2007-10-302-0/+121
* Patch 1329 (partial) by Christian Heimes.Guido van Rossum2007-10-301-3/+3
* Get rid of more uses of string and use unicodeNeal Norwitz2007-10-272-2/+2
* Sort the method lists for str8 and bytes so differences are more apparent.Guido van Rossum2007-10-262-145/+177
* Patch 1335 by Christian Heimes.Guido van Rossum2007-10-261-1/+121
* Fix some Py_ssize_t warnings on Win64 that were probably bugsNeal Norwitz2007-10-262-4/+4
* Patch # 1302 by Christian Heimes (with some love from me :-).Guido van Rossum2007-10-251-12/+39
* Fix a refleak for `filename', introduced in rev. 58466.Georg Brandl2007-10-241-4/+0
* Fix a broken format in a PyErr_Format() call: %lx is not supported.Guido van Rossum2007-10-241-1/+1