406 Commits (090f7be6dfd4e246cf5bc2db24c2070810d3c98b)

Author SHA1 Message Date
Hynek Schlawack 5c6b3e214c Issue #15001: fix segfault on "del sys.module['__main__']" 13 years ago
Victor Stinner 90ef747e04 Close #13119: use "\r\n" newline for sys.stdout/err on Windows 14 years ago
Antoine Pitrou 01cca5e451 Issue #15020: The program name used to search for Python's path is now "python3" under Unix, not "python". 14 years ago
Benjamin Peterson 80d50428ce fix parse_syntax_error to clean up its resources 14 years ago
Antoine Pitrou 86838b02f0 Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. 14 years ago
Georg Brandl 2daf6ae249 Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) 14 years ago
Antoine Pitrou 2fabface50 Fix a memory leak when initializing the standard I/O streams. 14 years ago
Antoine Pitrou 11942a58a1 Issue #7111: Python can now be run without a stdin, stdout or stderr stream. 14 years ago
Antoine Pitrou d7c8fbf89e Issue #13444: When stdout has been closed explicitly, we should not attempt to flush it at shutdown and print an error. 14 years ago
Barry Warsaw 916048d780 - Issue #13021: Missing decref on an error path. Thanks to Suman Saha for 14 years ago
Georg Brandl 0b2489e986 Closes #6498: fix several misspellings of "SystemExit" as "SystemError". 15 years ago
Antoine Pitrou 0d5e52d346 Issue #1856: Avoid crashes and lockups when daemon threads run while the 15 years ago
Victor Stinner 3cbf14bfb1 Issue #10914: Initialize correctly the filesystem codec when creating a new 15 years ago
Victor Stinner 1188935af9 Issue #10914: Py_NewInterpreter() uses PyErr_PrintEx(0) 15 years ago
Victor Stinner 9c4efe571d Fix #11586: typo in initfsencoding() 15 years ago
Victor Stinner 02bfdb3f79 Merged revisions 88530 via svnmerge from 15 years ago
Victor Stinner 0fcab4a3ed Issue #9566: use Py_ssize_t instead of int 15 years ago
Georg Brandl 8aa7e999b5 Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric in #1772833. 15 years ago
Georg Brandl 8334fd9285 Add an "optimize" parameter to compile() to control the optimization level, and provide an interface to it in py_compile, compileall and PyZipFile. 15 years ago
Martin v. Löwis 4d0d471a80 Merge branches/pep-0384. 15 years ago
Georg Brandl e5b99f0fb3 Remove redundant includes of headers that are already included by Python.h. 15 years ago
Antoine Pitrou 5a96b5241f Issue #10255: Fix reference leak in Py_InitializeEx(). Patch by Neil 15 years ago
Antoine Pitrou cf9f98034a Issue #10372: Import the warnings module only after the IO library is 15 years ago
Hirokazu Yamamoto 3d89751c7a Merged revisions 85980 via svnmerge from 15 years ago
Hirokazu Yamamoto daf83acf00 Issue #10157: Fixed refleaks in pythonrun.c. Patch by Stefan Krah. 15 years ago
Benjamin Peterson c8850d0771 Merged revisions 85817,85904 via svnmerge from 15 years ago
Benjamin Peterson a95e977e41 decrement offset when it points to a newline (#10186 followup) 15 years ago
Benjamin Peterson d4519c14ca tighten loop 15 years ago
Benjamin Peterson 9831611865 Merged revisions 85814 via svnmerge from 15 years ago
Benjamin Peterson 503d6c5ae9 remove broken code accounting an offset the size of the line #10186 15 years ago
Victor Stinner 3aa6cea861 Issue #10077: Fix logging of site module errors at startup. 15 years ago
Victor Stinner 15244f7b12 Recorded merge of revisions 85569-85570 via svnmerge from 15 years ago
Victor Stinner e474309bb7 initfsencoding(): get_codeset() failure is now a fatal error 15 years ago
Victor Stinner 49d3f2514b _PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding 15 years ago
Victor Stinner 2f2ed1f36c Fix ast_error_finish() and err_input(): filename can be NULL 15 years ago
Victor Stinner 4c7c8c3023 Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects 15 years ago
Victor Stinner f3170ccef8 Use locale encoding if Py_FileSystemDefaultEncoding is not set 15 years ago
Victor Stinner 6a4aff10f0 redecode_filename(): don't need to initialize variables 15 years ago
Victor Stinner 8f6b6b0cc3 Issue #9992: Remove PYTHONFSENCODING environment variable. 15 years ago
Victor Stinner c39211f51e Issue #9630: Redecode filenames when setting the filesystem encoding 15 years ago
Antoine Pitrou b0b384b7c0 Issue #9901: Destroying the GIL in Py_Finalize() can fail if some other 15 years ago
Antoine Pitrou 1df1536fb9 Issue #9828: Destroy the GIL in Py_Finalize(), so that it gets properly 16 years ago
Victor Stinner 94908bbc15 Issue #8622: Add PYTHONFSENCODING environment variable to override the 16 years ago
Victor Stinner 6961bd690e Issue #8063: Call _PyGILState_Init() earlier in Py_InitializeEx(). 16 years ago
Antoine Pitrou 696e03553b Issue #477863: Print a warning at shutdown if gc.garbage is not empty. 16 years ago
Antoine Pitrou b61d5c9758 Merged revisions 83854 via svnmerge from 16 years ago
Antoine Pitrou bddc9fe22b Issue #5319: Print an error if flushing stdout fails at interpreter 16 years ago
Alexander Belopolsky 6fc4ade2bb Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C API 16 years ago
Victor Stinner 25bb0fdb67 Merged revisions 82059,82061 via svnmerge from 16 years ago
Victor Stinner 0fe25a445d Issue #6543: Write the traceback in the terminal encoding instead of utf-8. 16 years ago