| Commit message (Expand) | Author | Age | Files | Lines |
* | SF patch 1546297 (with some tweaks): | Guido van Rossum | 2006-08-25 | 1 | -15/+3 |
|
|
* | Make built-in zip() equal to itertools.izip(). | Guido van Rossum | 2006-08-24 | 1 | -102/+18 |
|
|
* | Make it compile with C89. | Guido van Rossum | 2006-08-24 | 1 | -1/+2 |
|
|
* | Restructure comparison dramatically. There is no longer a default | Guido van Rossum | 2006-08-24 | 1 | -12/+16 |
|
|
* | Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M. | Guido van Rossum | 2006-08-22 | 1 | -75/+0 |
|
|
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 1 | -2/+2 |
|
|
* | Get rid of most of the rest of coerce (slot is still there for now). | Neal Norwitz | 2006-08-21 | 1 | -25/+0 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -4/+14 |
|
|
* | Here is a bytes type. It's very minimal but it's a start. | Guido van Rossum | 2006-04-22 | 1 | -0/+1 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -19/+26 |
|
|
* | Remove apply() | Neal Norwitz | 2006-03-17 | 1 | -45/+0 |
|
|
* | Whoops, input *and* raw_input are slated for removal, and now both are gone. | Neal Norwitz | 2006-03-17 | 1 | -86/+0 |
|
|
* | raw_input() -> input(). old input behavior is history (and test_builtin pass... | Neal Norwitz | 2006-03-17 | 1 | -110/+72 |
|
|
* | Change int to Py_ssize_t in several places. | Martin v. Löwis | 2006-03-07 | 1 | -1/+1 |
|
|
* | SF patch #1438387, PEP 328: relative and absolute imports. | Thomas Wouters | 2006-02-28 | 1 | -3/+5 |
|
|
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 1 | -1/+1 |
|
|
* | Generate code to recursively copy an AST into | Martin v. Löwis | 2006-02-26 | 1 | -1/+1 |
|
|
* | Fix compiler warning (int vs Py_ssize_t mismatch | Neal Norwitz | 2006-02-19 | 1 | -1/+1 |
|
|
* | Use Py_ssize_t to count the | Martin v. Löwis | 2006-02-16 | 1 | -15/+15 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -9/+9 |
|
|
* | Renamed _length_cue() to __length_hint__(). See: | Armin Rigo | 2006-02-11 | 1 | -3/+3 |
|
|
* | Fix an int/long mismatch identified here: | Neal Norwitz | 2005-12-15 | 1 | -1/+2 |
|
|
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -1/+1 |
|
|
* | Fix memory leaks | Neal Norwitz | 2005-11-27 | 1 | -5/+8 |
|
|
* | Fix a bunch of imports to use code.h instead of compile.h. | Jeremy Hylton | 2005-10-21 | 1 | -1/+0 |
|
|
* | Merge ast-branch to head | Jeremy Hylton | 2005-10-20 | 1 | -1/+1 |
|
|
* | Convert iterator __len__() methods to a private API. | Raymond Hettinger | 2005-09-24 | 1 | -3/+3 |
|
|
* | Removed a check "if (args != NULL)" which is always True and makes no sense. | Armin Rigo | 2005-09-20 | 1 | -5/+3 |
|
|
* | bug [ 868706 ] Calling builtin function 'eval' from C causes seg fault. | Georg Brandl | 2005-09-15 | 1 | -0/+7 |
|
|
* | Whitespace normalization. | Georg Brandl | 2005-08-31 | 1 | -7/+7 |
|
|
* | SF bug #1242657: list(obj) can swallow KeyboardInterrupt | Raymond Hettinger | 2005-08-21 | 1 | -0/+12 |
|
|
* | Fix cleanup DECREF logic in builtin_filter function. | Georg Brandl | 2005-07-19 | 1 | -6/+6 |
|
|
* | Add two new functions, any() and all(). | Raymond Hettinger | 2005-03-11 | 1 | -0/+65 |
|
|
* | Put parentheses around the assignment in the 'while' loop conditional | Brett Cannon | 2004-12-07 | 1 | -1/+1 |
|
|
* | SF patch #1077353: add key= argument to min and max | Raymond Hettinger | 2004-12-03 | 1 | -39/+71 |
|
|
* | Patch #1015021: Stop claiming that coerce can return None. | Martin v. Löwis | 2004-08-25 | 1 | -4/+4 |
|
|
* | Patch #1005468: Disambiguate "min() or max()" exception string. | Martin v. Löwis | 2004-08-12 | 1 | -3/+4 |
|
|
* | Subclasses of string can no longer be interned. The semantics of | Jeremy Hylton | 2004-08-07 | 1 | -0/+5 |
|
|
* | for some reason, the lack of adherence to Python's C whitespace rules | Michael W. Hudson | 2004-08-02 | 1 | -2/+2 |
|
|
* | Completed the patch for Bug #215126. | Raymond Hettinger | 2004-08-02 | 1 | -2/+6 |
|
|
* | Check the type of values returned by __int__, __float__, __long__, | Neil Schemenauer | 2004-07-19 | 1 | -2/+20 |
|
|
* | This closes patch: | Michael W. Hudson | 2004-07-07 | 1 | -1/+2 |
|
|
* | * Fix missing return after error message is set. | Raymond Hettinger | 2004-07-06 | 1 | -1/+2 |
|
|
* | SF Bug #215126: Over restricted type checking on eval() function | Raymond Hettinger | 2004-07-02 | 1 | -6/+13 |
|
|
* | OS/2 VACPP build updates/fixes | Andrew MacIntyre | 2004-03-29 | 1 | -1/+1 |
|
|
* | Fix input() builtin function to respect compiler flags. | Hye-Shik Chang | 2004-02-02 | 1 | -1/+4 |
|
|
* | Apply pre-sizing optimization to a broader class of objects. | Raymond Hettinger | 2004-01-04 | 1 | -8/+4 |
|
|
* | Apply map/zip pre-sizing optimization to a broader class of objects. | Raymond Hettinger | 2004-01-04 | 1 | -11/+7 |
|
|
* | Guido grants a Christmas wish: | Raymond Hettinger | 2003-12-17 | 1 | -0/+45 |
|
|
* | Remove the PendingDeprecationWarning from apply(). apply() will | Fred Drake | 2003-12-05 | 1 | -4/+0 |
|
|