| Commit message (Expand) | Author | Age | Files | Lines |
* | Revert r61969 which added casts to Py_CHARMASK to avoid compiler warnings. | Neal Norwitz | 2008-03-28 | 1 | -8/+8 |
|
|
* | Build bots are working again - removing the hack | Christian Heimes | 2008-03-27 | 1 | -1/+1 |
|
|
* | Quick 'n dirty hack: Increase the magic by 2 to force a rebuild of pyc/pyo fi... | Christian Heimes | 2008-03-27 | 1 | -1/+1 |
|
|
* | Fix warnings about using char as an array subscript. This is not portable | Neal Norwitz | 2008-03-27 | 1 | -8/+8 |
|
|
* | C89 compliance: Microsoft compilers want variable declarations at the top | Amaury Forgeot d'Arc | 2008-03-26 | 1 | -4/+2 |
|
|
* | Initialize PyCompilerFlags cf_flags with 0 | Christian Heimes | 2008-03-26 | 2 | -0/+4 |
|
|
* | Patch #2477: Added from __future__ import unicode_literals | Christian Heimes | 2008-03-26 | 4 | -19/+41 |
|
|
* | Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,... | Christian Heimes | 2008-03-26 | 2 | -1/+34 |
|
|
* | Make Py3k warnings consistent w.r.t. punctuation; also respect the | Georg Brandl | 2008-03-25 | 4 | -10/+14 |
|
|
* | Try to fix a bunch of compiler warnings on Win64. | Neal Norwitz | 2008-03-25 | 1 | -2/+2 |
|
|
* | Added quick hack for bzr | Christian Heimes | 2008-03-24 | 1 | -2/+2 |
|
|
* | Added quick hack for bzr | Christian Heimes | 2008-03-24 | 1 | -1/+8 |
|
|
* | Remove compiler warnings (on Alpha at least) about using chars as | Neal Norwitz | 2008-03-23 | 1 | -5/+6 |
|
|
* | #2358: add py3k warning to sys.exc_clear(). | Georg Brandl | 2008-03-21 | 1 | -1/+9 |
|
|
* | The filter() function does support a None argument in Py3.0. | Raymond Hettinger | 2008-03-19 | 1 | -7/+0 |
|
|
* | Issue #2400: Allow relative imports to "import *". | Martin v. Löwis | 2008-03-19 | 1 | -4/+0 |
|
|
* | Backport of the print function, using a __future__ import. | Eric Smith | 2008-03-18 | 3 | -4/+80 |
|
|
* | Added a warning when -3 is enabled and None is passed to filter as the first ... | David Wolever | 2008-03-18 | 1 | -0/+7 |
|
|
* | Finish backporting new buffer API to Python 2.6. Left to do: memoryview obje... | Travis E. Oliphant | 2008-03-18 | 1 | -0/+1 |
|
|
* | Issue #2341: Add a Py3k warning when raising an exception that doesn't | Guido van Rossum | 2008-03-18 | 1 | -0/+9 |
|
|
* | Remove our implementation of memmove() and strerror(); both are in the C89 | Brett Cannon | 2008-03-18 | 2 | -44/+0 |
|
|
* | Clean up the Py3k warnings for non-BaseException-subclasses a bit. We | Guido van Rossum | 2008-03-18 | 1 | -4/+6 |
|
|
* | - Issue #2371: Add a Py3k warning when catching an exception that | Guido van Rossum | 2008-03-18 | 1 | -0/+27 |
|
|
* | Finished backporting PEP 3127, Integer Literal Support and Syntax. | Eric Smith | 2008-03-17 | 1 | -6/+54 |
|
|
* | Reformated lines > 79 chars. | Eric Smith | 2008-03-17 | 1 | -8/+12 |
|
|
* | Issue 2264: empty float presentation type needs to have at least one digit pa... | Eric Smith | 2008-03-17 | 1 | -17/+61 |
|
|
* | Handle memory allocation failure. Found by Adam Olsen | Neal Norwitz | 2008-03-15 | 1 | -2/+3 |
|
|
* | Add a warning for code like: | Neal Norwitz | 2008-03-15 | 1 | -0/+8 |
|
|
* | Speed up with statements by storing the __exit__ method on the stack instead ... | Nick Coghlan | 2008-03-07 | 3 | -39/+58 |
|
|
* | Issue#2238: some syntax errors from *args or **kwargs expressions | Amaury Forgeot d'Arc | 2008-03-05 | 1 | -0/+4 |
|
|
* | compile.c always emits END_FINALLY after WITH_CLEANUP, so predict that in | Jeffrey Yasskin | 2008-03-03 | 1 | -0/+2 |
|
|
* | More copyright year and version number bumpsv2.6a1 | Barry Warsaw | 2008-03-01 | 1 | -1/+1 |
|
|
* | Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and i... | Christian Heimes | 2008-02-26 | 1 | -154/+109 |
|
|
* | Whitespace normalization | Neal Norwitz | 2008-02-26 | 1 | -6/+6 |
|
|
* | Fix indentation | Neal Norwitz | 2008-02-25 | 2 | -2/+2 |
|
|
* | Add a little info to the 3k deprecation warnings about what to use instead. | Neal Norwitz | 2008-02-24 | 1 | -4/+4 |
|
|
* | map(None, ...) is not supported in 3.0. | Neal Norwitz | 2008-02-24 | 1 | -3/+9 |
|
|
* | MS Windows doesn't have mode_t but stat.st_mode is defined as unsigned short. | Christian Heimes | 2008-02-23 | 1 | -0/+5 |
|
|
* | Issue #2051 and patch from Alexander Belopolsky: | Christian Heimes | 2008-02-23 | 2 | -15/+16 |
|
|
* | Removed duplicate Py_CHARMASK define. It's already defined in Python.h. | Eric Smith | 2008-02-23 | 1 | -8/+0 |
|
|
* | Patch #1759: Backport of PEP 3129 class decorators | Christian Heimes | 2008-02-23 | 5 | -1202/+1260 |
|
|
* | Added bin() builtin. I'm going to check in the tests in a seperate checkin, ... | Eric Smith | 2008-02-22 | 1 | -0/+13 |
|
|
* | Trim leading zeros from a floating point exponent, per C99. See issue 1600. ... | Eric Smith | 2008-02-20 | 1 | -27/+127 |
|
|
* | Perform correct handling of stack overflow for windows: Catch the correct exc... | Kristján Valur Jónsson | 2008-02-18 | 1 | -2/+8 |
|
|
* | Backport of PEP 3101, Advanced String Formatting, from py3k. | Eric Smith | 2008-02-17 | 3 | -0/+47 |
|
|
* | Deallocate content of the dict free list on interpreter shutdown | Christian Heimes | 2008-02-08 | 1 | -0/+1 |
|
|
* | Remove unnecessary curly braces around an int literal. | Brett Cannon | 2008-02-07 | 1 | -2/+2 |
|
|
* | Cast a struct to a void pointer so as to do a type-safe pointer comparison | Brett Cannon | 2008-02-07 | 1 | -3/+3 |
|
|
* | Change r60575 broke test_compile: | Amaury Forgeot d'Arc | 2008-02-05 | 1 | -0/+3 |
|
|
* | #1750076: Debugger did not step on every iteration of a while statement. | Amaury Forgeot d'Arc | 2008-02-04 | 1 | -14/+15 |
|
|