- 08336e3 follup to #3473: don't duplicate the reduce code by Benjamin Peterson · 17 years ago
- 39fd672 #3479: unichr(2**32) used to return u'\x00'. by Amaury Forgeot d'Arc · 17 years ago
- 9c437af Revert 64424, 64438, and 64439. by Raymond Hettinger · 17 years ago
- e3ae655 Make bin() implementation parallel oct() and hex() so that int/long subclasses can override or so that other classes can support. by Raymond Hettinger · 17 years ago
- 9d53457 Merge in release25-maint r60793: by Gregory P. Smith · 17 years ago
- dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 17 years ago
- 6585660 Issue 2784: fix leaks in exception exit. by Raymond Hettinger · 17 years ago
- 593daf5 Renamed PyString to PyBytes by Christian Heimes · 17 years ago
- 3497f94 First step of the C API rename: by Christian Heimes · 17 years ago
- c6d64ec revert 63425 over Guido's Febuary message about this, that I missed by Benjamin Peterson · 17 years ago
- d7943cb fix spelling by Benjamin Peterson · 17 years ago
- 79a922d add Py3k warnings to oct and hex. backport hex behavior (because it's not different) by Benjamin Peterson · 17 years ago
- b9030f4 #2196 hasattr now allows SystemExit and KeyboardInterrupt to propagate by Benjamin Peterson · 17 years ago
- 28e0873 #2719: backport next() from 3k. by Georg Brandl · 17 years ago
- f19a7b9 A little reformating of Py3k warnings by Benjamin Peterson · 17 years ago
- 9f4f481 Use PyErr_WarnPy3k throughout by Benjamin Peterson · 17 years ago
- f2bfd54 Properly check for consistency with the third argument of by Georg Brandl · 17 years ago
- fc8eef3 Patch #1810 by Thomas Lee, reviewed by myself: by Georg Brandl · 17 years ago
- 1a6387e Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from by Christian Heimes · 17 years ago
- d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 17 years ago
- 10dca6e The filter() function does support a None argument in Py3.0. by Raymond Hettinger · 17 years ago
- 7c47894 Backport of the print function, using a __future__ import. by Eric Smith · 17 years ago
- 8e6ec2f Added a warning when -3 is enabled and None is passed to filter as the first argument. by David Wolever · 17 years ago
- 3781aef 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. by Travis E. Oliphant · 17 years ago
- b93e7d1 Add a little info to the 3k deprecation warnings about what to use instead. by Neal Norwitz · 17 years ago
- 53152a1 map(None, ...) is not supported in 3.0. by Neal Norwitz · 17 years ago
- 3cd8194 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. by Eric Smith · 17 years ago
- a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 17 years ago
- ca2b69f Move __builtins__.trunc() to math.trunc() per by Jeffrey Yasskin · 17 years ago
- 867558a CallMethod is faster with a NULL third-argument than with an empty format string. by Raymond Hettinger · 17 years ago
- 1d9a9ea Fix two crashers. by Guido van Rossum · 17 years ago
- 288e89a Added bytes and b'' as aliases for str and '' by Christian Heimes · 17 years ago
- 9fcd8ce Fix C++-style comment. by Georg Brandl · 17 years ago
- 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 17 years ago
- 2f3c16b Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just by Jeffrey Yasskin · 17 years ago
- 01dbc10 Improve performance of built-in any()/all() by avoiding PyIter_Next() -- by Guido van Rossum · 17 years ago
- 4e3ebe0 Note that open() is the preferred way to open files (issue 1510). by Skip Montanaro · 17 years ago
- 4e2f714 Fix Issue 1045. by Raymond Hettinger · 17 years ago
- a45c487 Missing DECREFs by Raymond Hettinger · 18 years ago
- 3a8daf5 Fixup error return and add support for intermixed ints and floats/ by Raymond Hettinger · 18 years ago
- 3f8caa3 Optimize sum() for integer and float inputs. by Raymond Hettinger · 18 years ago
- df25efe Add a bunch more deprecation warnings for builtins that are going away in 3.0 by Neal Norwitz · 18 years ago
- 8b2bfbc Add -3 option to the interpreter to warn about features that are by Neal Norwitz · 18 years ago
- 5240d74 Patch #1444529: the builtin compile() now accepts keyword arguments. (backport) by Georg Brandl · 18 years ago
- 3bb1567 Typo and grammar fixes. by Georg Brandl · 18 years ago
- 871f1bc Backport from Py3k branch: by Georg Brandl · 18 years ago
- 8134d06 Bug #1283491: follow docstring convention wrt. keyword-able args in sum(). by Georg Brandl · 19 years ago
- 477ca1c Fix SF #1552093, eval docstring typo (3 ps in mapping) by Neal Norwitz · 19 years ago
- 43bd4db It's highly unlikely, though possible for PyEval_Get*() to return NULLs. by Neal Norwitz · 19 years ago
- 7e3ba2a Bug #1535165: fixed a segfault in input() and raw_input() when by Georg Brandl · 19 years ago
- c4edb0e SF #1479181: split open() and file() from being aliases for each other. by Neal Norwitz · 19 years ago
- b1ed7fa Replace INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 19 years ago
- 92e212f Accept keyword arguments for __import__ and doc the addition of the level param from PEP 328. by Neal Norwitz · 19 years ago
- ccadf84 Patch #1460496: round() now accepts keyword arguments. by Georg Brandl · 19 years ago
- 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 19 years ago
- f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 19 years ago
- 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
- bd260da Generate code to recursively copy an AST into by Martin v. Löwis · 19 years ago
- a361bd8 Fix compiler warning (int vs Py_ssize_t mismatch by Neal Norwitz · 19 years ago
- d96ee90 Use Py_ssize_t to count the by Martin v. Löwis · 19 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 19 years ago
- 6f0d479 Fix an int/long mismatch identified here: by Neal Norwitz · 19 years ago
- af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
- 3a9a3e7 Fix memory leaks by Neal Norwitz · 19 years ago
- ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 20 years ago
- 3e0055f Merge ast-branch to head by Jeremy Hylton · 20 years ago
- 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 20 years ago
- 71d7e70 Removed a check "if (args != NULL)" which is always True and makes no sense. by Armin Rigo · 20 years ago
- 77c85e6 bug [ 868706 ] Calling builtin function 'eval' from C causes seg fault. by Georg Brandl · 20 years ago
- 99d7e4e Whitespace normalization. by Georg Brandl · 20 years ago
- a710b33 SF bug #1242657: list(obj) can swallow KeyboardInterrupt by Raymond Hettinger · 20 years ago
- e35b657 Fix cleanup DECREF logic in builtin_filter function. by Georg Brandl · 20 years ago
- 96229b1 Add two new functions, any() and all(). by Raymond Hettinger · 20 years ago
- 9e635cf Put parentheses around the assignment in the 'while' loop conditional by Brett Cannon · 20 years ago
- 3b0c7c2 SF patch #1077353: add key= argument to min and max by Raymond Hettinger · 20 years ago
- 8d494f3 Patch #1015021: Stop claiming that coerce can return None. Will backport to 2.3. by Martin v. Löwis · 21 years ago
- fd39ad4 Patch #1005468: Disambiguate "min() or max()" exception string. by Martin v. Löwis · 21 years ago
- 4c989dd Subclasses of string can no longer be interned. The semantics of by Jeremy Hylton · 21 years ago
- 52db519 for some reason, the lack of adherence to Python's C whitespace rules by Michael W. Hudson · 21 years ago
- 66bd233 Completed the patch for Bug #215126. by Raymond Hettinger · 21 years ago
- 3a313e3 Check the type of values returned by __int__, __float__, __long__, by Neil Schemenauer · 21 years ago
- 30ea2f2 This closes patch: by Michael W. Hudson · 21 years ago
- 513ffe8 * Fix missing return after error message is set. by Raymond Hettinger · 21 years ago
- 214b1c3 SF Bug #215126: Over restricted type checking on eval() function by Raymond Hettinger · 21 years ago
- da4d6cb OS/2 VACPP build updates/fixes by Andrew MacIntyre · 21 years ago
- ff83c2b Fix input() builtin function to respect compiler flags. by Hye-Shik Chang · 21 years ago
- b86269d Apply pre-sizing optimization to a broader class of objects. by Raymond Hettinger · 21 years ago
- 77f3c87 Apply map/zip pre-sizing optimization to a broader class of objects. by Raymond Hettinger · 21 years ago
- 64958a1 Guido grants a Christmas wish: by Raymond Hettinger · 21 years ago
- d75ede3 Remove the PendingDeprecationWarning from apply(). apply() will by Fred Drake · 21 years ago
- a690a99 * Migrate set() and frozenset() from the sandbox. by Raymond Hettinger · 21 years ago
- 85c20a4 Implement and apply PEP 322, reverse iteration by Raymond Hettinger · 22 years ago
- a253e18 regressing the performance bugfix -- Guido wants the performance bug left by Alex Martelli · 22 years ago
- a2777d3 Changed builtin_sum to use PyNumber_InPlaceAdd (same semantics, but fixes by Alex Martelli · 22 years ago
- 5cf6394 Use PyArg_UnpackTuple() where possible. by Raymond Hettinger · 22 years ago
- 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 22 years ago
- 364f6be Correct check of PyUnicode_Resize() return value. by Jeremy Hylton · 22 years ago
- 1aad9c7 Reflow long lines and reformat. by Jeremy Hylton · 22 years ago
- c58a3a1 Fix a crash: when sq_item failed the code continued blindly and used the by Walter Dörwald · 22 years ago