585 Commits (ccd047ea4b92f09a84b67e69deb82ce42e510c4c)

Author SHA1 Message Date
Georg Brandl 2cabc56296 #3706: fix error message for wrong exec() argument type. R=Guido. 18 years ago
Benjamin Peterson 08336e30ad follup to #3473: don't duplicate the reduce code 18 years ago
Marc-André Lemburg 4cc0f24857 Rename PyUnicode_AsString -> _PyUnicode_AsString and 18 years ago
Amaury Forgeot d'Arc 7888d0803d Merged revisions 65339-65340,65342 via svnmerge from 18 years ago
Amaury Forgeot d'Arc 39fd672dfe #3479: unichr(2**32) used to return u'\x00'. 18 years ago
Mark Dickinson 0d748c2fa4 Docstring typo 18 years ago
Georg Brandl 809ddaaafb #3191: fix round() docs and docstring. 18 years ago
Raymond Hettinger 9c437af4eb Revert 64424, 64438, and 64439. 18 years ago
Raymond Hettinger e3ae655edf Make bin() implementation parallel oct() and hex() so that int/long subclasses can override or so that other classes can support. 18 years ago
Georg Brandl 559e5d7f4d #2630: Implement PEP 3138. 18 years ago
Gregory P. Smith 9d53457e59 Merge in release25-maint r60793: 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
Gregory P. Smith dd96db63f6 This reverts r63675 based on the discussion in this thread: 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
Raymond Hettinger 65856600ed Issue 2784: fix leaks in exception exit. 18 years ago
Christian Heimes 72b710a596 Renamed PyString to PyBytes 18 years ago
Christian Heimes 9c4756ea26 Renamed PyBytes to PyByteArray 18 years ago
Christian Heimes 593daf545b Renamed PyString to PyBytes 18 years ago
Christian Heimes 3497f94476 First step of the C API rename: 18 years ago
Benjamin Peterson c6d64ec83f revert 63425 over Guido's Febuary message about this, that I missed 18 years ago
Benjamin Peterson d7943cb71d fix spelling 18 years ago
Benjamin Peterson 79a922d6df add Py3k warnings to oct and hex. backport hex behavior (because it's not different) 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
Benjamin Peterson b9030f4f0d #2196 hasattr now allows SystemExit and KeyboardInterrupt to propagate 18 years ago
Georg Brandl 28e0873f1f #2719: backport next() from 3k. 18 years ago
Georg Brandl aaa6392a12 Fix nits in builtin next(). 18 years ago
Benjamin Peterson f19a7b90bd A little reformating of Py3k warnings 18 years ago
Benjamin Peterson 9f4f48114f Use PyErr_WarnPy3k throughout 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
Georg Brandl f2bfd54d6f Properly check for consistency with the third argument of 18 years ago
Georg Brandl fc8eef3c78 Patch #1810 by Thomas Lee, reviewed by myself: 18 years ago
Christian Heimes 1a6387e683 Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from 18 years ago
Georg Brandl d5b635f196 Make Py3k warnings consistent w.r.t. punctuation; also respect the 18 years ago
Raymond Hettinger 10dca6e282 The filter() function does support a None argument in Py3.0. 18 years ago
Eric Smith 7c47894a2a Backport of the print function, using a __future__ import. 18 years ago
David Wolever 8e6ec2ff02 Added a warning when -3 is enabled and None is passed to filter as the first argument. 18 years ago
Travis E. Oliphant 3781aef8f8 Finish backporting new buffer API to Python 2.6. Left to do: memoryview object and structmodule. But, these need to be finished in Python 3.0 first. No objects support the new buffer API in Python 2.6 as of yet, and except for the memoryview object, I don't think they will. 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
Neal Norwitz b93e7d16d5 Add a little info to the 3k deprecation warnings about what to use instead. 18 years ago
Neal Norwitz 53152a1905 map(None, ...) is not supported in 3.0. 18 years ago
Eric Smith 3cd8194b9c Added bin() builtin. I'm going to check in the tests in a seperate checkin, because the builtin doesn't need to be ported to py3k, but the tests are missing in py3k and need to be merged there. 18 years ago
Eric Smith 8fd3eba050 Fixes for shared 2.6 code that implements PEP 3101, advanced string 18 years ago
Eric Smith a9f7d62480 Backport of PEP 3101, Advanced String Formatting, from py3k. 18 years ago
Martin v. Löwis 73c01d4101 Added checks for integer overflows, contributed by Google. Some are 18 years ago