aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/pythonrun.c
Commit message (Expand)AuthorAge
* Issue #13390: New function :func:`sys.getallocatedblocks()` returns the numbe...Antoine Pitrou2012-12-09
* Issue #15001: fix segfault on "del sys.module['__main__']"Hynek Schlawack2012-11-07
|\
| * Issue #15001: fix segfault on "del sys.module['__main__']"Hynek Schlawack2012-11-07
| * Close #13119: use "\r\n" newline for sys.stdout/err on WindowsVictor Stinner2012-08-04
* | Issue #16218: Support non ascii characters in python launcher.Andrew Svetlov2012-11-01
* | Issue #15895: my analysis was slightly off. The FILE pointer is only leaked w...Christian Heimes2012-09-11
* | Issue #15895: Fix FILE pointer leak in PyRun_SimpleFileExFlags() when filenam...Christian Heimes2012-09-11
* | Close #13119: use "\r\n" newline for sys.stdout/err on WindowsVictor Stinner2012-08-04
* | Fix initialization of the faulthandler moduleVictor Stinner2012-07-31
* | Refcounting fixesNick Coghlan2012-07-15
* | Make set_main_loader static (noticed by Antoine Pitrou)Nick Coghlan2012-07-15
* | Actually initialize __main__.__loader__ with loader instances, not the corres...Nick Coghlan2012-07-15
* | Take the first step in resolving the messy pkgutil vs importlib edge cases by...Nick Coghlan2012-07-15
* | Issue #15020: The program name used to search for Python's path is now python...Antoine Pitrou2012-07-05
|\|
| * Issue #15020: The program name used to search for Python's path is now "pytho...Antoine Pitrou2012-07-05
* | Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allo...David Malcolm2012-06-22
* | Issue #14928: Fix importlib bootstrap issues by using a custom executable (Mo...Antoine Pitrou2012-06-19
* | PEP 415: Implement suppression of __context__ display with an exception attri...Benjamin Peterson2012-05-14
* | Issues #13959, 14647: Re-implement imp.reload() in Lib/imp.py.Brett Cannon2012-04-29
* | Issue #14605: Make explicit the entries on sys.path_hooks that used toBrett Cannon2012-04-25
* | Issue #13959: Rename imp to _imp and add Lib/imp.py and beginBrett Cannon2012-04-15
* | Plug a refleak.Brett Cannon2012-04-15
* | Issue #2377: Make importlib the implementation of __import__().Brett Cannon2012-04-14
* | merge 3.2Benjamin Peterson2012-04-03
|\|
| * fix parse_syntax_error to clean up its resourcesBenjamin Peterson2012-04-03
* | Close issue #6210: Implement PEP 409Nick Coghlan2012-02-26
* | Fix test failure in test_cmd_line by initializing the hash secret at the earl...Antoine Pitrou2012-02-21
|\|
| * Fix test failure in test_cmd_line by initializing the hash secret at the earl...Antoine Pitrou2012-02-21
* | Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-21
|\|
| * Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...Georg Brandl2012-02-20
| |\
| | * Issue #13703: add a way to randomize the hash values of basic types (str, byt...Georg Brandl2012-02-20
* | | Issue #12705: Raise SyntaxError when compiling multiple statements as single ...Meador Inge2012-01-19
* | | Fix a memory leak when initializing the standard I/O streams.Antoine Pitrou2012-01-18
|\| |
| * | Fix a memory leak when initializing the standard I/O streams.Antoine Pitrou2012-01-18
* | | Issue #13645: pyc files now contain the size of the corresponding sourceAntoine Pitrou2012-01-13
* | | Issue #13575: there is only one class type.Florent Xicluna2011-12-12
* | | Issue #7111: Python can now be run without a stdin, stdout or stderr stream.Antoine Pitrou2011-11-28
|\| |
| * | Issue #7111: Python can now be run without a stdin, stdout or stderr stream.Antoine Pitrou2011-11-28
* | | Issue #13444: When stdout has been closed explicitly, we should not attempt t...Antoine Pitrou2011-11-26
|\| |
| * | Issue #13444: When stdout has been closed explicitly, we should not attempt t...Antoine Pitrou2011-11-26
* | | print_exception() uses PyUnicode_GetLength() instead of PyUnicode_GetSize()Victor Stinner2011-11-20
* | | Issue #10227: Add an allocation cache for a single slice object.Antoine Pitrou2011-11-18
* | | Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignoreVictor Stinner2011-10-18
* | | Port SetAttrString/HasAttrString to SetAttrId/GetAttrId.Martin v. Löwis2011-10-14
* | | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-14
* | | Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-10
* | | Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-09
* | | - Issue #13021: Missing decref on an error path. Thanks to Suman Saha forBarry Warsaw2011-09-20
|\| |
| * | - Issue #13021: Missing decref on an error path. Thanks to Suman Saha forBarry Warsaw2011-09-20
* | | Issue #9642: Fix filesystem encoding initialization: use the ANSI code page onVictor Stinner2011-07-04