490 Commits (bbe2f60b3c19ecaa02ca07be14474eaacfcb59a0)

Author SHA1 Message Date
Georg Brandl 559e5d7f4d #2630: Implement PEP 3138. 18 years ago
Martin v. Löwis 1a21451b1d Implement PEP 3121: new module initialization and finalization API. 18 years ago
Georg Brandl f08a9ddcb7 Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,63781-63782,63787,63805-63808,63818-63819,63823-63824 via svnmerge from 18 years ago
Georg Brandl a26f8ca668 Revert r63934 -- it was mixing two patches. 18 years ago
Georg Brandl f954c4b9fb Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. 18 years ago
Christian Heimes 72b710a596 Renamed PyString to PyBytes 18 years ago
Christian Heimes 9c4756ea26 Renamed PyBytes to PyByteArray 18 years ago
Georg Brandl d11ae5d6ec Rename enumerate() kw argument name to "iterable" and fix "sequence"->"iterable" in some docstrings. 18 years ago
Alexandre Vassalotti eca20b6114 Merged revisions 63119-63128,63130-63131,63133,63135-63144,63146-63148,63151-63152,63155-63165,63167-63176,63181-63186,63188-63189 via svnmerge from 18 years ago
Georg Brandl aaa6392a12 Fix nits in builtin next(). 18 years ago
Neal Norwitz db4115ffc0 Merged revisions 62039-62042 via svnmerge from 18 years ago
Martin v. Löwis 618dc5e064 Merged revisions 62004 via svnmerge from 18 years ago
Raymond Hettinger 736c0ab428 Move itertools izip() code to builtins as zip(). Complete the renaming. 18 years ago
Raymond Hettinger a6c6037f88 Issues 2186 and 2187. Move map() from itertools to builtins. 18 years ago
Raymond Hettinger 17301e9fab Issue 2186 and 2187. Move filter from itertools to builtins. 18 years ago
Eric Smith 8fd3eba050 Fixes for shared 2.6 code that implements PEP 3101, advanced string 18 years ago
Georg Brandl cd5da7d51b Make print docstring consistent with its docs. 18 years ago
Christian Heimes 400adb030a Merged revisions 60475-60479,60481-60488 via svnmerge from 18 years ago
Raymond Hettinger 70b64fce96 Issue #1771: Remove cmp parameter from list.sort() and builtin.sorted(). 18 years ago
Christian Heimes fe82e774ea Merged revisions 60379-60382 via svnmerge from 18 years ago
Christian Heimes bbffeb61e1 Merged revisions 60210-60233 via svnmerge from 18 years ago
Raymond Hettinger 1dfde1ddc0 Replace map(None, *iterables) with zip(*iterables). 18 years ago
Christian Heimes 819b8bf403 More PyImport_ImportModule -> PyImport_ImportModuleNoBlock 18 years ago
Christian Heimes 5fb7c2ad0b Merged revisions 59565-59594 via svnmerge from 18 years ago
Christian Heimes 90aa7646af #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. 18 years ago
Christian Heimes 94b7d3db59 Fixed #1593 spacing of the builtin_format function is inconsistent. Thanks to Joseph for the fix 18 years ago
Martin v. Löwis d1a1d1ed80 Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. 18 years ago
Christian Heimes 217cfd1c86 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h 18 years ago
Georg Brandl 1a3284ed69 #1535: rename __builtin__ module to builtins. 18 years ago
Christian Heimes c896700235 Partial fix for bug #1306 18 years ago
Christian Heimes 91c77301bf Fixed bug in input() which broke pdb 19 years ago
Guido van Rossum 254348e201 Rename buffer -> bytearray. 19 years ago
Christian Heimes 2be03734f8 Added some additional checks for sys.std?? is None, see #1440 19 years ago
Christian Heimes fef9bbaff2 Another #1415 fix for Windows GUI apps 19 years ago
Guido van Rossum 98297ee781 Merging the py3k-pep3137 branch back into the py3k branch. 19 years ago
Guido van Rossum 8ce8a784bd Merged revisions 58221-58741 via svnmerge from 19 years ago
Guido van Rossum 3172c5d263 Patch# 1258 by Christian Heimes: kill basestring. 19 years ago
Guido van Rossum 00bc0e0a2d Patch #1272, by Christian Heimes and Alexandre Vassalotti. 19 years ago
Guido van Rossum bae07c9baf Breaking ground for PEP 3137 implementation: 19 years ago
Martin v. Löwis 4a7b5d5b4f Decode input() with stdin.encoding. Fixes #1097. 19 years ago
Eric Smith 37f10386f1 Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking for unicode objects. 19 years ago
Neal Norwitz c2550c7b1c Remove chr8, we're not likely to need it at this point 19 years ago
Eric Smith 81936699c8 Added test cases for string.Formatter subclassing. 19 years ago
Eric Smith 56e4a840bc Added test to ensure __format__ methods return unicode objects. 19 years ago
Guido van Rossum a4b8d1de7c Some changes in preparation of stricter rules about mixing str and bytes. 19 years ago
Neal Norwitz 6ea45d3341 Use unicode and remove support for some uses of str8. 19 years ago
Eric Smith 8c66326368 Implementation of PEP 3101, Advanced String Formatting. 19 years ago
Guido van Rossum 15d3d04547 Before calling _PyType_Lookup() the type needs to be initialized. 19 years ago
Guido van Rossum 2fa33db12b Finish the work on __round__ and __trunc__. 19 years ago
Alex Martelli ae211f9abf Implement the round functionality for PEP 3141, and add tests for it. 19 years ago