546 Commits (0cb8e5131d0797d3bdb1494de842e98798174cf2)

Author SHA1 Message Date
Georg Brandl 77c85e63b4 bug [ 868706 ] Calling builtin function 'eval' from C causes seg fault. 21 years ago
Georg Brandl 99d7e4e8eb Whitespace normalization. 21 years ago
Raymond Hettinger a710b331da SF bug #1242657: list(obj) can swallow KeyboardInterrupt 21 years ago
Georg Brandl e35b657efd Fix cleanup DECREF logic in builtin_filter function. 21 years ago
Raymond Hettinger 96229b1918 Add two new functions, any() and all(). 21 years ago
Brett Cannon 9e635cf3ae Put parentheses around the assignment in the 'while' loop conditional 22 years ago
Raymond Hettinger 3b0c7c20a1 SF patch #1077353: add key= argument to min and max 22 years ago
Martin v. Löwis 8d494f3241 Patch #1015021: Stop claiming that coerce can return None. 22 years ago
Martin v. Löwis fd39ad4937 Patch #1005468: Disambiguate "min() or max()" exception string. 22 years ago
Jeremy Hylton 4c989ddc9c Subclasses of string can no longer be interned. The semantics of 22 years ago
Michael W. Hudson 52db519faa for some reason, the lack of adherence to Python's C whitespace rules 22 years ago
Raymond Hettinger 66bd233225 Completed the patch for Bug #215126. 22 years ago
Neil Schemenauer 3a313e3655 Check the type of values returned by __int__, __float__, __long__, 22 years ago
Michael W. Hudson 30ea2f223f This closes patch: 22 years ago
Raymond Hettinger 513ffe8112 * Fix missing return after error message is set. 22 years ago
Raymond Hettinger 214b1c3aae SF Bug #215126: Over restricted type checking on eval() function 22 years ago
Andrew MacIntyre da4d6cb573 OS/2 VACPP build updates/fixes 22 years ago
Hye-Shik Chang ff83c2bacc Fix input() builtin function to respect compiler flags. 22 years ago
Raymond Hettinger b86269db45 Apply pre-sizing optimization to a broader class of objects. 22 years ago
Raymond Hettinger 77f3c87113 Apply map/zip pre-sizing optimization to a broader class of objects. 22 years ago
Raymond Hettinger 64958a15d7 Guido grants a Christmas wish: 23 years ago
Fred Drake d75ede3238 Remove the PendingDeprecationWarning from apply(). apply() will 23 years ago
Raymond Hettinger a690a9967e * Migrate set() and frozenset() from the sandbox. 23 years ago
Raymond Hettinger 85c20a41df Implement and apply PEP 322, reverse iteration 23 years ago
Alex Martelli a253e183b8 regressing the performance bugfix -- Guido wants the performance bug left 23 years ago
Alex Martelli a2777d3a55 Changed builtin_sum to use PyNumber_InPlaceAdd (same semantics, but fixes 23 years ago
Raymond Hettinger 5cf6394b12 Use PyArg_UnpackTuple() where possible. 23 years ago
Raymond Hettinger 8ae4689657 Simplify and speedup uses of Py_BuildValue(): 23 years ago
Jeremy Hylton 364f6becad Correct check of PyUnicode_Resize() return value. 23 years ago
Jeremy Hylton 1aad9c7dad Reflow long lines and reformat. 23 years ago
Walter Dörwald c58a3a10a9 Fix a crash: when sq_item failed the code continued blindly and used the 23 years ago
Neil Schemenauer 689735562d Make filter(bool, ...) as fast as filter(None, ...). 23 years ago
Raymond Hettinger eaef615116 As discussed on python-dev, changed builtin.zip() to handle zero arguments 23 years ago
Alex Martelli a9b9c9fa9f some more error-message enhancements 23 years ago
Alex Martelli f471d4783a complete and clarify some error messages for range() 23 years ago
Alex Martelli 41c9f880d8 fixed a potential refcount bug (thanks Raymond!). 23 years ago
Alex Martelli a70b19147f Adding new built-in function sum, with docs and tests. 23 years ago
Guido van Rossum 28e83e3a66 Some errors from range() should be TypeError, not ValueError. 23 years ago
Guido van Rossum 817d6c9c9e Prompted by Tim's comment, when handle_range_longs() sees an 23 years ago
Tim Peters 874e1f7ed3 handle_range_longs(): refcount handling is very delicate here, and 23 years ago
Guido van Rossum efbbb1c602 Patch by Chad Netzer (with significant change): 23 years ago
Raymond Hettinger ff41c48a77 SF patch #701494: more apply removals 23 years ago
Tim Peters 7571a0fbcf Improved new Py_TRACE_REFS gimmicks. 23 years ago
Neal Norwitz 3e59076b1d Fix SF bug #690435, apply fails to check if warning raises exception 23 years ago
Guido van Rossum 4b499dd3fb - Finally fixed the bug in compile() and exec where a string ending 23 years ago
Walter Dörwald 8dd19321bb Change filtertuple() to use tp_as_sequence->sq_item 23 years ago
Tim Peters 2c646c9fc1 Squashed compiler wng about signed/unsigned clash in comparison. 23 years ago
Walter Dörwald 1918f7755e Change filterstring() and filterunicode(): If the 23 years ago
Just van Rossum b9b8e9cf6d My previous checkin caused compile() to no longer accept buffers, as noted 23 years ago
Just van Rossum 3aaf42c613 patch #683515: "Add unicode support to compile(), eval() and exec" 23 years ago