- b9348e7 fix parse_syntax_error to clean up its resources by Benjamin Peterson · 13 years ago
- cc3fa88 Fix crash at startup with -W options. by Antoine Pitrou · 13 years ago
- aee9dfb merge 2.6 with hash randomization fix by Benjamin Peterson · 13 years ago
- 1e13eb0 - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEED by Barry Warsaw · 13 years ago
- 11041f0 Port #6498 fix: fix several misspellings of "SystemExit" as "SystemError". by Georg Brandl · 14 years ago
- ec9f9f5 Merged revisions 85904 via svnmerge from by Benjamin Peterson · 15 years ago
- f99f33d Merged revisions 85814 via svnmerge from by Benjamin Peterson · 15 years ago
- a03ff6d sys.stderr and sys.excepthook can be None at interpreter shutdown, by Antoine Pitrou · 15 years ago
- c3e40e0 Merged revisions 81537 via svnmerge from by Victor Stinner · 15 years ago
- c49dfcc Issue #3798: Write sys.exit() message to sys.stderr to use stderr encoding and by Victor Stinner · 15 years ago
- c7c96a9 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 15 years ago
- c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 15 years ago
- 0819b09 Merged revisions 81007 via svnmerge from by Jean-Paul Calderone · 15 years ago
- e54ddf1 Skip signal handler re-installation if it is not necessary. Issue 8354. by Jean-Paul Calderone · 15 years ago
- c33e82d Change to a Py_XDECREF and fix some whitespace. by Brett Cannon · 15 years ago
- ea16429 Partial backport of r78826: leave import site error handler unchanged (print by Victor Stinner · 15 years ago
- 6664426 Issue #3137: Don't ignore errors at startup, especially a keyboard interrupt by Victor Stinner · 15 years ago
- 9aece75 Merged revisions 75570,75574,75624 via svnmerge from by Antoine Pitrou · 16 years ago
- efb60c0 Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which by Antoine Pitrou · 16 years ago
- a8da9e0 Merged revisions 71152 via svnmerge from by Matthias Klose · 16 years ago
- edb5e1e - Issue #3845: In PyRun_SimpleFileExFlags avoid invalid memory access with by Matthias Klose · 16 years ago
- 70b11f0 Merged revisions 70908 via svnmerge from by Jesse Noller · 16 years ago
- 42f9b4e Issue 5619: Pass MS CRT debug flags into subprocesses by Jesse Noller · 16 years ago
- efc82f7 Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. by Mark Dickinson · 16 years ago
- 734373c Merged revisions 68133-68134,68141-68142,68145-68146,68148-68149,68159-68162,68166,68171-68174,68179,68195-68196,68210,68214-68215,68217-68222 via svnmerge from by Georg Brandl · 16 years ago
- 796798b fix compilation on non-Windows platforms by Benjamin Peterson · 16 years ago
- 5344c99 Issue #4075: Use OutputDebugStringW in Py_FatalError. by Martin v. Löwis · 16 years ago
- 74b458c Merged revisions 67343 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
- dc61901 #3996: On Windows, PyOS_CheckStack is supposed to protect the interpreter from by Amaury Forgeot d'Arc · 16 years ago
- 084ce7a Merged revisions 67066 via svnmerge from by Benjamin Peterson · 17 years ago
- dcee09d make sure the parser flags and passed onto the compiler by Benjamin Peterson · 17 years ago
- 18aa388 Fix: by Neal Norwitz · 17 years ago
- 1ad108d #3378: in case of no memory, don't leak even more memory. :) by Georg Brandl · 17 years ago
- 3c0fd56 Fix tabs. by Georg Brandl · 17 years ago
- dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 17 years ago
- 6495c8d Typo: encoding -> codeset. by Martin v. Löwis · 17 years ago
- b12d857 Move sys_stream and sys_isatty out of the have-langinfo block. by Martin v. Löwis · 17 years ago
- 9981589 New environment variable PYTHONIOENCODING. by Martin v. Löwis · 17 years ago
- 593daf5 Renamed PyString to PyBytes by Christian Heimes · 17 years ago
- 3497f94 First step of the C API rename: by Christian Heimes · 17 years ago
- b52a74b #2816: clarify error messages for EOF while scanning strings. by Georg Brandl · 17 years ago
- af748c3 Implemented PEP 370 by Christian Heimes · 17 years ago
- e974689 Re-implement the 'warnings' module in C. This allows for usage of the by Brett Cannon · 17 years ago
- df70e05 C89 compliance: Microsoft compilers want variable declarations at the top by Amaury Forgeot d'Arc · 17 years ago
- 7f23d86 Initialize PyCompilerFlags cf_flags with 0 by Christian Heimes · 17 years ago
- 3c60833 Patch #2477: Added from __future__ import unicode_literals by Christian Heimes · 17 years ago
- 1a6387e Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from by Christian Heimes · 17 years ago
- 7c47894 Backport of the print function, using a __future__ import. by Eric Smith · 17 years ago
- 5299935 Perform correct handling of stack overflow for windows: Catch the correct exception code and reset the overflow condition when handled. by Kristján Valur Jónsson · 17 years ago
- f75dbef Deallocate content of the dict free list on interpreter shutdown by Christian Heimes · 17 years ago
- 908caac Added clear cache methods to clear the internal type lookup cache for ref leak test runs. by Christian Heimes · 17 years ago
- 2da0fce Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECODE envvar to skip writing bytecode. by Georg Brandl · 17 years ago
- 025c347 Issue #1402: PyInterpreterState_Clear() may still invoke user code by Amaury Forgeot d'Arc · 17 years ago
- 67387fb Make pythoncore compile cleanly with VisualStudio 2005. Used an explicit typecast to get a 64 bit integer, and undefined the Yield macro that conflicts with winbase.h by Kristján Valur Jónsson · 18 years ago
- 276887b Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. Fixed by patch #922167. by Collin Winter · 18 years ago
- 7b9c555 Bug #1678647: write a newline after printing an exception in any by Georg Brandl · 18 years ago
- aa2321b Patch #703779: unset __file__ in __main__ after running a file. This by Georg Brandl · 18 years ago
- 49aafc9 Variant of patch #697613: don't exit the interpreter on a SystemExit by Georg Brandl · 18 years ago
- 098cd69 Bug #1674503: close the file opened by execfile() in an error condition. by Georg Brandl · 18 years ago
- afea529 SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomize by Thomas Wouters · 18 years ago
- ca460d9 with and as are now keywords. There are some generated files I can't recreate. by Neal Norwitz · 19 years ago
- 0c6ae5b Handle a few more error conditions. by Neal Norwitz · 19 years ago
- 0f7dbf7 PyModule_GetDict() can fail, produce fatal errors if this happens on startup. by Neal Norwitz · 19 years ago
- 421c131 Whoops, how did that get in there. :-) Revert all the parts of 51227 that were not supposed to go it. Only Modules/_ctypes/cfields.c was supposed to be changed by Neal Norwitz · 19 years ago
- 6b4953f Check returned pointer is valid. Klocwork #233 by Neal Norwitz · 19 years ago
- b59d08c Fix more memory allocation issues found with failmalloc. by Neal Norwitz · 19 years ago
- d12bd01 Handle more memory allocation failures without crashing. by Neal Norwitz · 19 years ago
- a5e4f22 Reported by Klocwork #151. by Neal Norwitz · 19 years ago
- 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 19 years ago
- 5e9d6cf PyErr_Display(), PyErr_WriteUnraisable(): Coverity found a cut-and-paste by Tim Peters · 19 years ago
- 7b9558d Conversion of exceptions over from faked-up classes to new-style C types. by Richard Jones · 19 years ago
- 1b04664 Change those parts of the Python-api that were functions in 2.4, and by Thomas Heller · 19 years ago
- 45294a9 Remove types from type_list if they have no objects by Martin v. Löwis · 19 years ago
- ac6bd46 spread the extern "C" { } magic pixie dust around. Python itself builds now by Anthony Baxter · 19 years ago
- e170937 Ignore the references to the dummy objects used as deleted keys by Armin Rigo · 19 years ago
- ea62d25 Bug #1421664: Set sys.stderr.encoding by Martin v. Löwis · 19 years ago
- 62e97f0 In format strings slinging Py_ssize_t, unconditionally by Tim Peters · 19 years ago
- c9d78aa Years in the making. by Tim Peters · 19 years ago
- 9d78550 Address an coverity issue. Coverity was complaining about a line that's fine, by Guido van Rossum · 19 years ago
- f2e0c45 Fix warnings on x86 (32-bit). by Neal Norwitz · 19 years ago
- 99b93c2 Use %Id for size_t-ish things on Win64. by Martin v. Löwis · 19 years ago
- 4281cef Use Py_ssize_t for _Py_RefTotal. by Neal Norwitz · 19 years ago
- 9589ee2 Tabify by Neal Norwitz · 19 years ago
- e92fba0 Get rid of run_err_mod(). It was only used in two places. by Neal Norwitz · 19 years ago
- 2e63b73 Fix refleak in PyErr_Display(). by Brett Cannon · 19 years ago
- 056a69c Reconst parameters that lost their const in the AST merge. by Martin v. Löwis · 19 years ago
- bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 19 years ago
- 34aa7ba from __future__ import with_statement addon for 'with', mostly written by Neal. by Thomas Wouters · 19 years ago
- 2b366e4 Check whether there are flags. by Martin v. Löwis · 19 years ago
- bd260da Generate code to recursively copy an AST into by Martin v. Löwis · 19 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- db83eb3 Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter. by Neal Norwitz · 19 years ago
- adb69fc Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, by Neal Norwitz · 19 years ago
- b45b315 Patch #1350409: Port signal handling to VS 2005. by Martin v. Löwis · 19 years ago
- 3e0055f Merge ast-branch to head by Jeremy Hylton · 20 years ago
- 40d3781 - Fix segfault with invalid coding. by Neal Norwitz · 20 years ago
- d35edda Forward UnicodeDecodeError into SyntaxError for source encoding errors. by Martin v. Löwis · 20 years ago
- d794666 * Improve code for the empty frozenset singleton: by Raymond Hettinger · 20 years ago
- ba283e2 This is my patch: by Michael W. Hudson · 20 years ago
- 12b6f6c Move exception finalisation later in the shutdown process - this by Anthony Baxter · 20 years ago