- 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 · 18 years ago
- 867558a CallMethod is faster with a NULL third-argument than with an empty format string. by Raymond Hettinger · 18 years ago
- 1d9a9ea Fix two crashers. by Guido van Rossum · 18 years ago
- 288e89a Added bytes and b'' as aliases for str and '' by Christian Heimes · 18 years ago
- 9fcd8ce Fix C++-style comment. by Georg Brandl · 18 years ago
- 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 18 years ago
- 2f3c16b Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just by Jeffrey Yasskin · 18 years ago
- 01dbc10 Improve performance of built-in any()/all() by avoiding PyIter_Next() -- by Guido van Rossum · 18 years ago
- 4e3ebe0 Note that open() is the preferred way to open files (issue 1510). by Skip Montanaro · 18 years ago
- 4e2f714 Fix Issue 1045. by Raymond Hettinger · 18 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 · 20 years ago
- af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 20 years ago
- 3a9a3e7 Fix memory leaks by Neal Norwitz · 20 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 · 21 years ago
- 3b0c7c2 SF patch #1077353: add key= argument to min and max by Raymond Hettinger · 21 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 · 22 years ago
- b86269d Apply pre-sizing optimization to a broader class of objects. by Raymond Hettinger · 22 years ago
- 77f3c87 Apply map/zip pre-sizing optimization to a broader class of objects. by Raymond Hettinger · 22 years ago
- 64958a1 Guido grants a Christmas wish: by Raymond Hettinger · 22 years ago
- d75ede3 Remove the PendingDeprecationWarning from apply(). apply() will by Fred Drake · 22 years ago
- a690a99 * Migrate set() and frozenset() from the sandbox. by Raymond Hettinger · 22 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
- 6897355 Make filter(bool, ...) as fast as filter(None, ...). by Neil Schemenauer · 22 years ago
- eaef615 As discussed on python-dev, changed builtin.zip() to handle zero arguments by Raymond Hettinger · 22 years ago
- a9b9c9f some more error-message enhancements by Alex Martelli · 22 years ago
- f471d47 complete and clarify some error messages for range() by Alex Martelli · 22 years ago
- 41c9f88 fixed a potential refcount bug (thanks Raymond!). by Alex Martelli · 22 years ago
- a70b191 Adding new built-in function sum, with docs and tests. by Alex Martelli · 22 years ago
- 28e83e3 Some errors from range() should be TypeError, not ValueError. by Guido van Rossum · 22 years ago
- 817d6c9 Prompted by Tim's comment, when handle_range_longs() sees an by Guido van Rossum · 22 years ago
- 874e1f7 handle_range_longs(): refcount handling is very delicate here, and by Tim Peters · 22 years ago
- efbbb1c Patch by Chad Netzer (with significant change): by Guido van Rossum · 22 years ago
- ff41c48 SF patch #701494: more apply removals by Raymond Hettinger · 22 years ago
- 7571a0f Improved new Py_TRACE_REFS gimmicks. by Tim Peters · 22 years ago
- 3e59076 Fix SF bug #690435, apply fails to check if warning raises exception by Neal Norwitz · 22 years ago
- 4b499dd3 - Finally fixed the bug in compile() and exec where a string ending by Guido van Rossum · 22 years ago
- 8dd1932 Change filtertuple() to use tp_as_sequence->sq_item by Walter Dörwald · 22 years ago
- 2c646c9 Squashed compiler wng about signed/unsigned clash in comparison. by Tim Peters · 22 years ago