- fa21bf0 Issue #12705: Raise SyntaxError when compiling multiple statements as single interactive statement by Meador Inge · 13 years ago
- fff47ab Fix a memory leak when initializing the standard I/O streams. by Antoine Pitrou · 13 years ago
- 2fabfac Fix a memory leak when initializing the standard I/O streams. by Antoine Pitrou · 13 years ago
- 5136ac0 Issue #13645: pyc files now contain the size of the corresponding source by Antoine Pitrou · 13 years ago
- aa6c1d2 Issue #13575: there is only one class type. by Florent Xicluna · 13 years ago
- 39a73a4 Issue #7111: Python can now be run without a stdin, stdout or stderr stream. by Antoine Pitrou · 13 years ago
- 11942a5 Issue #7111: Python can now be run without a stdin, stdout or stderr stream. by Antoine Pitrou · 13 years ago
- 5604ef3 Issue #13444: When stdout has been closed explicitly, we should not attempt to flush it at shutdown and print an error. by Antoine Pitrou · 13 years ago
- d7c8fbf Issue #13444: When stdout has been closed explicitly, we should not attempt to flush it at shutdown and print an error. by Antoine Pitrou · 13 years ago
- e251d6d print_exception() uses PyUnicode_GetLength() instead of PyUnicode_GetSize() by Victor Stinner · 13 years ago
- f34a0cd Issue #10227: Add an allocation cache for a single slice object. by Antoine Pitrou · 13 years ago
- 3a50e70 Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignore by Victor Stinner · 14 years ago
- 1c67dd9 Port SetAttrString/HasAttrString to SetAttrId/GetAttrId. by Martin v. Löwis · 14 years ago
- bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 14 years ago
- 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 14 years ago
- afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 14 years ago
- a80b14c - Issue #13021: Missing decref on an error path. Thanks to Suman Saha for by Barry Warsaw · 14 years ago
- 916048d - Issue #13021: Missing decref on an error path. Thanks to Suman Saha for by Barry Warsaw · 14 years ago
- d64e8a7 Issue #9642: Fix filesystem encoding initialization: use the ANSI code page on by Victor Stinner · 14 years ago
- 13b21bd print_exception(): handle correctly PyObject_GetAttrString() failure by Victor Stinner · 14 years ago
- 1a4de20 Merge #6498 fix from 3.2. by Georg Brandl · 14 years ago
- 318e621 Merge #6498 fix from 3.1. by Georg Brandl · 14 years ago
- 0b2489e Closes #6498: fix several misspellings of "SystemExit" as "SystemError". by Georg Brandl · 14 years ago
- 7bba62f faulthandler: dump all threads by default by Victor Stinner · 14 years ago
- fc20b0c Issue #1856: Avoid crashes and lockups when daemon threads run while the by Antoine Pitrou · 14 years ago
- 0d5e52d Issue #1856: Avoid crashes and lockups when daemon threads run while the by Antoine Pitrou · 14 years ago
- 3cbf14b Issue #10914: Initialize correctly the filesystem codec when creating a new by Victor Stinner · 14 years ago
- 793b531 Issue #10914: Initialize correctly the filesystem codec when creating a new by Victor Stinner · 14 years ago
- 1188935 Issue #10914: Py_NewInterpreter() uses PyErr_PrintEx(0) by Victor Stinner · 14 years ago
- c40a350 Issue #10914: Py_NewInterpreter() uses PyErr_PrintEx(0) by Victor Stinner · 14 years ago
- 7f2fee3 Issue #10785: Store the filename as Unicode in the Python parser. by Victor Stinner · 14 years ago
- d727e23 Issue #11393: The fault handler handles also SIGABRT by Victor Stinner · 14 years ago
- 024e37a Issue #11393: Add the new faulthandler module by Victor Stinner · 14 years ago
- 9c4efe5 Fix #11586: typo in initfsencoding() by Victor Stinner · 14 years ago
- 4ca2809 Fix #11586: typo in initfsencoding() by Victor Stinner · 14 years ago
- 02bfdb3 Merged revisions 88530 via svnmerge from by Victor Stinner · 14 years ago
- c0f1a1a Issue #11272: Fix input() and sys.stdin for Windows newline by Victor Stinner · 14 years ago
- 0fcab4a Issue #9566: use Py_ssize_t instead of int by Victor Stinner · 14 years ago
- 8aa7e99 Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric in #1772833. by Georg Brandl · 14 years ago
- 8334fd9 Add an "optimize" parameter to compile() to control the optimization level, and provide an interface to it in py_compile, compileall and PyZipFile. by Georg Brandl · 14 years ago
- 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
- e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
- 5a96b52 Issue #10255: Fix reference leak in Py_InitializeEx(). Patch by Neil by Antoine Pitrou · 14 years ago
- cf9f980 Issue #10372: Import the warnings module only after the IO library is by Antoine Pitrou · 15 years ago
- 3d89751 Merged revisions 85980 via svnmerge from by Hirokazu Yamamoto · 15 years ago
- daf83ac Issue #10157: Fixed refleaks in pythonrun.c. Patch by Stefan Krah. by Hirokazu Yamamoto · 15 years ago
- c8850d0 Merged revisions 85817,85904 via svnmerge from by Benjamin Peterson · 15 years ago
- a95e977 decrement offset when it points to a newline (#10186 followup) by Benjamin Peterson · 15 years ago
- d4519c1 tighten loop by Benjamin Peterson · 15 years ago
- 9831611 Merged revisions 85814 via svnmerge from by Benjamin Peterson · 15 years ago
- 503d6c5 remove broken code accounting an offset the size of the line #10186 by Benjamin Peterson · 15 years ago
- 3aa6cea Issue #10077: Fix logging of site module errors at startup. by Victor Stinner · 15 years ago
- 15244f7 Recorded merge of revisions 85569-85570 via svnmerge from by Victor Stinner · 15 years ago
- e474309 initfsencoding(): get_codeset() failure is now a fatal error by Victor Stinner · 15 years ago
- 49d3f25 _PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding by Victor Stinner · 15 years ago
- 2f2ed1f Fix ast_error_finish() and err_input(): filename can be NULL by Victor Stinner · 15 years ago
- 4c7c8c3 Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects by Victor Stinner · 15 years ago
- f3170cc Use locale encoding if Py_FileSystemDefaultEncoding is not set by Victor Stinner · 15 years ago
- 6a4aff1 redecode_filename(): don't need to initialize variables by Victor Stinner · 15 years ago
- 8f6b6b0 Issue #9992: Remove PYTHONFSENCODING environment variable. by Victor Stinner · 15 years ago
- c39211f Issue #9630: Redecode filenames when setting the filesystem encoding by Victor Stinner · 15 years ago
- b0b384b Issue #9901: Destroying the GIL in Py_Finalize() can fail if some other by Antoine Pitrou · 15 years ago
- 1df1536 Issue #9828: Destroy the GIL in Py_Finalize(), so that it gets properly by Antoine Pitrou · 15 years ago
- 94908bb Issue #8622: Add PYTHONFSENCODING environment variable to override the by Victor Stinner · 15 years ago
- 6961bd6 Issue #8063: Call _PyGILState_Init() earlier in Py_InitializeEx(). by Victor Stinner · 15 years ago
- 696e035 Issue #477863: Print a warning at shutdown if gc.garbage is not empty. by Antoine Pitrou · 15 years ago
- b61d5c9 Merged revisions 83854 via svnmerge from by Antoine Pitrou · 15 years ago
- bddc9fe Issue #5319: Print an error if flushing stdout fails at interpreter shutdown. by Antoine Pitrou · 15 years ago
- 6fc4ade Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C API by Alexander Belopolsky · 15 years ago
- 25bb0fd Merged revisions 82059,82061 via svnmerge from by Victor Stinner · 15 years ago
- 0fe25a4 Issue #6543: Write the traceback in the terminal encoding instead of utf-8. by Victor Stinner · 15 years ago
- 7f84ab5 Issue #8965: initfsencoding() doesn't change the encoding on Mac OS X by Victor Stinner · 15 years ago
- 93362d4 Merged revisions 81844 via svnmerge from by Victor Stinner · 15 years ago
- 55a5c78 Py_FatalError(): don't sys sys.last_xxx variables by Victor Stinner · 15 years ago
- 7126dbc Issue #3798: sys.exit(message) writes the message to sys.stderr file, instead by Victor Stinner · 15 years ago
- 148051a Recorded merge of revisions 81364 via svnmerge from by Victor Stinner · 15 years ago
- 7d79b8b Issue #8766: Initialize _warnings module before importing the first module. by Victor Stinner · 15 years ago
- 386fe71 Issue #6697: Check that _PyUnicode_AsString() result is not NULL by Victor Stinner · 15 years ago
- 2e71d01 Merged revisions 81250-81253 via svnmerge from by Victor Stinner · 15 years ago
- e9fb319 handle_system_exit() flushs files to warranty the output order by Victor Stinner · 15 years ago
- b744ba1 Issue #8610: Load file system codec at startup, and display a fatal error on by Victor Stinner · 15 years ago
- ebb5a88 Merged revisions 81156 via svnmerge from by Victor Stinner · 15 years ago
- 9467b21 Issue #4653: fix typo in flush_std_files() by Victor Stinner · 15 years ago
- 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 15 years ago
- f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 15 years ago
- 9c39bc7 Merged revisions 81016 via svnmerge from by Jean-Paul Calderone · 15 years ago
- 6f137ca Merged revisions 81007 via svnmerge from by Jean-Paul Calderone · 15 years ago
- b001df0 err_input(): don't encode/decode the unicode message by Victor Stinner · 15 years ago
- 28a691b PEP 3147 by Barry Warsaw · 15 years ago
- 1d6af70 Revert my change on initsite(): don't change import site error handler in 3.1, by Victor Stinner · 15 years ago
- ffbc2f6 Merged revisions 78872 via svnmerge from by Victor Stinner · 15 years ago
- fb94c5f * Replaces the internals of the subprocess module from fork through exec on by Gregory P. Smith · 15 years ago
- 52f6dd7 Merged revisions 78826 via svnmerge from by Victor Stinner · 15 years ago
- b2ceb3a #4532: fixes to make 3.x compile on QNX 6.3.2 (reported by Matt Kraai) by Andrew M. Kuchling · 15 years ago
- bcc63a8 Merged revisions 76573 via svnmerge from by Antoine Pitrou · 15 years ago
- 7b0d4a2 Issue #4486: When an exception has an explicit cause, do not print its implicit context too. by Antoine Pitrou · 15 years ago
- cefb316 Merged revisions 75571,75576-75577 via svnmerge from by Antoine Pitrou · 16 years ago
- 011bd62 Merged revisions 75570 via svnmerge from by Antoine Pitrou · 16 years ago
- cc3b8d6 bytes -> bytearray by Benjamin Peterson · 16 years ago
- 011e842 Issue #5915: Implement PEP 383, Non-decodable Bytes in by Martin v. Löwis · 16 years ago