| Commit message (Expand) | Author | Age | Files | Lines |
* | Patch #2488: Add sys.maxsize. | Martin v. Löwis | 2008-05-20 | 1 | -0/+3 |
|
|
* | revert 63425 over Guido's Febuary message about this, that I missed | Benjamin Peterson | 2008-05-17 | 1 | -27/+15 |
|
|
* | fix spelling | Benjamin Peterson | 2008-05-17 | 1 | -1/+1 |
|
|
* | add Py3k warnings to oct and hex. backport hex behavior (because it's not dif... | Benjamin Peterson | 2008-05-17 | 1 | -15/+27 |
|
|
* | Fix a refleak in the _warnings module. | Georg Brandl | 2008-05-13 | 1 | -1/+3 |
|
|
* | #2196 hasattr now allows SystemExit and KeyboardInterrupt to propagate | Benjamin Peterson | 2008-05-12 | 1 | -3/+7 |
|
|
* | Addresses issue 2802: 'n' formatting for integers. | Eric Smith | 2008-05-11 | 1 | -45/+4 |
|
|
* | #2816: clarify error messages for EOF while scanning strings. | Georg Brandl | 2008-05-11 | 1 | -2/+2 |
|
|
* | #1792: Improve performance of marshal.dumps() on large objects by increasing | Andrew M. Kuchling | 2008-05-11 | 1 | -1/+4 |
|
|
* | Fix sys.flags to properly expose bytes_warning. | Brett Cannon | 2008-05-08 | 1 | -2/+2 |
|
|
* | Implemented PEP 370 | Christian Heimes | 2008-05-06 | 2 | -5/+6 |
|
|
* | Fix logic error in Python/_warnings.c and add a test to verify | Benjamin Peterson | 2008-05-06 | 1 | -0/+2 |
|
|
* | Fix a bug in the handling of the stacklevel argument in warnings.warn() where | Brett Cannon | 2008-05-06 | 1 | -3/+1 |
|
|
* | Add a DeprecationWarning for when warnings.showwarning() is set to a function | Brett Cannon | 2008-05-05 | 1 | -13/+43 |
|
|
* | The compiling struct is now passed around to all AST helpers (see issue 2720) | Benjamin Peterson | 2008-05-03 | 1 | -32/+32 |
|
|
* | Fix the C implementation of 'warnings' to infer the filename of the module that | Brett Cannon | 2008-05-03 | 1 | -0/+13 |
|
|
* | Fix some indentation errors. | Brett Cannon | 2008-05-03 | 1 | -9/+10 |
|
|
* | Fix a backwards-compatibility mistake where a new optional argument for | Brett Cannon | 2008-05-02 | 1 | -3/+0 |
|
|
* | #2719: backport next() from 3k. | Georg Brandl | 2008-04-30 | 1 | -0/+42 |
|
|
* | Issue 2526, float.__format__ 'n' specifier does not support thousands grouping. | Eric Smith | 2008-04-30 | 1 | -128/+229 |
|
|
* | Fix a bug introduced by the warnings rewrite where tracebacks were being | Brett Cannon | 2008-04-28 | 1 | -2/+0 |
|
|
* | A little reformating of Py3k warnings | Benjamin Peterson | 2008-04-27 | 3 | -15/+15 |
|
|
* | Use PyErr_WarnPy3k throughout | Benjamin Peterson | 2008-04-27 | 3 | -31/+17 |
|
|
* | Added PyErr_WarnPy3k function. (issue 2671) I will be converting current Py3k... | Benjamin Peterson | 2008-04-27 | 1 | -0/+9 |
|
|
* | I finally got the time to update and merge Mark's and my trunk-math branch. T... | Christian Heimes | 2008-04-18 | 2 | -25/+232 |
|
|
* | Fix indentation in sysmodule.c | Benjamin Peterson | 2008-04-18 | 1 | -4/+4 |
|
|
* | Correct a refleak found by "regrtest.py -R:: test_structmembers" | Amaury Forgeot d'Arc | 2008-04-14 | 1 | -5/+6 |
|
|
* | Improve -X error message. | Georg Brandl | 2008-04-13 | 1 | -1/+1 |
|
|
* | #2627 Let it be known what pgen generates | Benjamin Peterson | 2008-04-13 | 1 | -0/+2 |
|
|
* | Use PyString_InternFromString instead of PyString_FromString for static vars | Christian Heimes | 2008-04-13 | 1 | -3/+3 |
|
|
* | Fix a bug in PySys_HasWarnOption() where it was not properly checking the | Brett Cannon | 2008-04-13 | 1 | -1/+1 |
|
|
* | Re-implement the 'warnings' module in C. This allows for usage of the | Brett Cannon | 2008-04-12 | 5 | -157/+917 |
|
|
* | Applied patch #2617 from Frank Wierzbicki wit some extras from me | Christian Heimes | 2008-04-12 | 1 | -1/+12 |
|
|
* | Make AST nodes pickleable. | Georg Brandl | 2008-03-30 | 1 | -2/+27 |
|
|
* | Fix error message -- "expects either 0 or 0 arguments" | Georg Brandl | 2008-03-30 | 1 | -2/+4 |
|
|
* | Make _fields attr for no fields consistent with _attributes attr. | Georg Brandl | 2008-03-30 | 1 | -8/+3 |
|
|
* | #2505: allow easier creation of AST nodes. | Georg Brandl | 2008-03-30 | 1 | -22/+113 |
|
|
* | Patch #2511: Give the "excepthandler" AST item proper attributes by making it... | Georg Brandl | 2008-03-30 | 4 | -94/+122 |
|
|
* | Properly check for consistency with the third argument of | Georg Brandl | 2008-03-29 | 2 | -20/+27 |
|
|
* | Fix a reference leak found by Georg, when compiling a class nested in another... | Amaury Forgeot d'Arc | 2008-03-28 | 1 | -0/+1 |
|
|
* | Silence a compilation warning | Amaury Forgeot d'Arc | 2008-03-28 | 1 | -1/+1 |
|
|
* | Patch #1810 by Thomas Lee, reviewed by myself: | Georg Brandl | 2008-03-28 | 3 | -30/+2919 |
|
|
* | 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 |
|
|