| Commit message (Expand) | Author | Age | Files | Lines |
* | #2816: clarify error messages for EOF while scanning strings. | Georg Brandl | 2008-05-11 | 1 | -2/+2 |
|
|
* | Implemented PEP 370 | Christian Heimes | 2008-05-06 | 1 | -0/+1 |
|
|
* | Re-implement the 'warnings' module in C. This allows for usage of the | Brett Cannon | 2008-04-12 | 1 | -60/+15 |
|
|
* | 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 | 1 | -0/+2 |
|
|
* | Patch #2477: Added from __future__ import unicode_literals | Christian Heimes | 2008-03-26 | 1 | -7/+23 |
|
|
* | Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,... | Christian Heimes | 2008-03-26 | 1 | -1/+26 |
|
|
* | Backport of the print function, using a __future__ import. | Eric Smith | 2008-03-18 | 1 | -4/+5 |
|
|
* | Perform correct handling of stack overflow for windows: Catch the correct exc... | Kristján Valur Jónsson | 2008-02-18 | 1 | -2/+8 |
|
|
* | Deallocate content of the dict free list on interpreter shutdown | Christian Heimes | 2008-02-08 | 1 | -0/+1 |
|
|
* | Added clear cache methods to clear the internal type lookup cache for ref lea... | Christian Heimes | 2008-01-27 | 1 | -0/+3 |
|
|
* | Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECO... | Georg Brandl | 2008-01-07 | 1 | -0/+3 |
|
|
* | Issue #1402: PyInterpreterState_Clear() may still invoke user code | Amaury Forgeot d'Arc | 2007-11-29 | 1 | -5/+5 |
|
|
* | Make pythoncore compile cleanly with VisualStudio 2005. Used an explicit typ... | Kristján Valur Jónsson | 2007-04-25 | 1 | -0/+1 |
|
|
* | Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. ... | Collin Winter | 2007-03-12 | 1 | -0/+4 |
|
|
* | Bug #1678647: write a newline after printing an exception in any | Georg Brandl | 2007-03-12 | 1 | -2/+2 |
|
|
* | Patch #703779: unset __file__ in __main__ after running a file. This | Georg Brandl | 2007-03-07 | 1 | -3/+11 |
|
|
* | Variant of patch #697613: don't exit the interpreter on a SystemExit | Georg Brandl | 2007-03-07 | 1 | -0/+6 |
|
|
* | Bug #1674503: close the file opened by execfile() in an error condition. | Georg Brandl | 2007-03-06 | 1 | -2/+2 |
|
|
* | SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomize | Thomas Wouters | 2007-01-23 | 1 | -3/+6 |
|
|
* | with and as are now keywords. There are some generated files I can't recreate. | Neal Norwitz | 2006-09-06 | 1 | -0/+7 |
|
|
* | Handle a few more error conditions. | Neal Norwitz | 2006-08-21 | 1 | -0/+5 |
|
|
* | PyModule_GetDict() can fail, produce fatal errors if this happens on startup. | Neal Norwitz | 2006-08-12 | 1 | -0/+4 |
|
|
* | Whoops, how did that get in there. :-) Revert all the parts of 51227 that we... | Neal Norwitz | 2006-08-12 | 1 | -3/+0 |
|
|
* | Check returned pointer is valid. | Neal Norwitz | 2006-08-12 | 1 | -0/+3 |
|
|
* | Fix more memory allocation issues found with failmalloc. | Neal Norwitz | 2006-07-22 | 1 | -6/+17 |
|
|
* | Handle more memory allocation failures without crashing. | Neal Norwitz | 2006-07-21 | 1 | -4/+13 |
|
|
* | Reported by Klocwork #151. | Neal Norwitz | 2006-07-17 | 1 | -2/+13 |
|
|
* | Patch #1495999: Part two of Windows CE changes. | Martin v. Löwis | 2006-06-10 | 1 | -0/+2 |
|
|
* | PyErr_Display(), PyErr_WriteUnraisable(): Coverity found a cut-and-paste | Tim Peters | 2006-05-28 | 1 | -13/+15 |
|
|
* | Conversion of exceptions over from faked-up classes to new-style C types. | Richard Jones | 2006-05-27 | 1 | -4/+8 |
|
|
* | Change those parts of the Python-api that were functions in 2.4, and | Thomas Heller | 2006-04-18 | 1 | -4/+96 |
|
|
* | Remove types from type_list if they have no objects | Martin v. Löwis | 2006-04-18 | 1 | -2/+9 |
|
|
* | spread the extern "C" { } magic pixie dust around. Python itself builds now | Anthony Baxter | 2006-04-13 | 1 | -0/+9 |
|
|
* | Ignore the references to the dummy objects used as deleted keys | Armin Rigo | 2006-04-12 | 1 | -1/+1 |
|
|
* | Bug #1421664: Set sys.stderr.encoding | Martin v. Löwis | 2006-04-03 | 1 | -0/+10 |
|
|
* | In format strings slinging Py_ssize_t, unconditionally | Tim Peters | 2006-03-28 | 1 | -9/+6 |
|
|
* | Years in the making. | Tim Peters | 2006-03-26 | 1 | -1/+1 |
|
|
* | Address an coverity issue. Coverity was complaining about a line that's fine, | Guido van Rossum | 2006-03-07 | 1 | -1/+2 |
|
|
* | Fix warnings on x86 (32-bit). | Neal Norwitz | 2006-03-06 | 1 | -1/+2 |
|
|
* | Use %Id for size_t-ish things on Win64. | Martin v. Löwis | 2006-03-05 | 1 | -1/+1 |
|
|
* | Use Py_ssize_t for _Py_RefTotal. | Neal Norwitz | 2006-03-04 | 1 | -6/+12 |
|
|
* | Tabify | Neal Norwitz | 2006-03-04 | 1 | -34/+34 |
|
|
* | Get rid of run_err_mod(). It was only used in two places. | Neal Norwitz | 2006-03-04 | 1 | -14/+4 |
|
|
* | Fix refleak in PyErr_Display(). | Brett Cannon | 2006-03-02 | 1 | -15/+14 |
|
|
* | Reconst parameters that lost their const in the AST merge. | Martin v. Löwis | 2006-03-01 | 1 | -1/+1 |
|
|
* | PEP 352 implementation. Creates a new base class, BaseException, which has an | Brett Cannon | 2006-03-01 | 1 | -7/+5 |
|
|
* | from __future__ import with_statement addon for 'with', mostly written by | Thomas Wouters | 2006-02-28 | 1 | -2/+4 |
|
|
* | Check whether there are flags. | Martin v. Löwis | 2006-02-26 | 1 | -1/+1 |
|
|
* | Generate code to recursively copy an AST into | Martin v. Löwis | 2006-02-26 | 1 | -0/+5 |
|
|