summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
Commit message (Expand)AuthorAgeFilesLines
...
| | * Plug a refleak.Brett Cannon2012-04-151-2/+1
| | * Issue #2377: Make importlib the implementation of __import__().Brett Cannon2012-04-141-2/+59
| | * merge 3.2Benjamin Peterson2012-04-031-20/+31
| | |\
| | * | Close issue #6210: Implement PEP 409Nick Coghlan2012-02-261-1/+5
| | * | Fix test failure in test_cmd_line by initializing the hash secret at the earl...Antoine Pitrou2012-02-211-1/+0
| | |\ \
| | * \ \ Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-211-66/+117
| | |\ \ \
| | | * | | Issue #12705: Raise SyntaxError when compiling multiple statements as single ...Meador Inge2012-01-191-0/+3
| | | * | | Fix a memory leak when initializing the standard I/O streams.Antoine Pitrou2012-01-181-1/+2
| | | |\ \ \
| | | * | | | Issue #13645: pyc files now contain the size of the corresponding sourceAntoine Pitrou2012-01-131-0/+2
| | | * | | | Issue #13575: there is only one class type.Florent Xicluna2011-12-121-6/+1
| | | * | | | Issue #7111: Python can now be run without a stdin, stdout or stderr stream.Antoine Pitrou2011-11-281-60/+111
| | | |\ \ \ \
| | | | * \ \ \ Issue #13444: When stdout has been closed explicitly, we should not attempt t...Antoine Pitrou2011-11-261-2/+18
| | | | |\ \ \ \
| | | | * | | | | print_exception() uses PyUnicode_GetLength() instead of PyUnicode_GetSize()Victor Stinner2011-11-201-1/+1
| | | | * | | | | Issue #10227: Add an allocation cache for a single slice object.Antoine Pitrou2011-11-181-0/+1
| | | | * | | | | Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignoreVictor Stinner2011-10-181-2/+3
| | | | * | | | | Port SetAttrString/HasAttrString to SetAttrId/GetAttrId.Martin v. Löwis2011-10-141-3/+6
| | | | * | | | | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-16/+16
| | | | * | | | | Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-10/+20
| | | | * | | | | Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-12/+18
| | | | * | | | | - Issue #13021: Missing decref on an error path. Thanks to Suman Saha forBarry Warsaw2011-09-201-1/+3
| | | | |\ \ \ \ \
| | | | * | | | | | Issue #9642: Fix filesystem encoding initialization: use the ANSI code page onVictor Stinner2011-07-041-15/+15
| | | | * | | | | | print_exception(): handle correctly PyObject_GetAttrString() failureVictor Stinner2011-05-261-1/+1
| | | | * | | | | | Merge #6498 fix from 3.2.Georg Brandl2011-05-151-16/+46
| | | | |\ \ \ \ \ \
| | | | | * | | | | | faulthandler: dump all threads by defaultVictor Stinner2011-05-071-1/+1
| | | | | * | | | | | Issue #1856: Avoid crashes and lockups when daemon threads run while theAntoine Pitrou2011-05-041-16/+46
| | | | | |\ \ \ \ \ \
| | | | | | * | | | | | Issue #10914: Initialize correctly the filesystem codec when creating a newVictor Stinner2011-04-271-8/+15
| | | | | | * | | | | | Issue #10914: Py_NewInterpreter() uses PyErr_PrintEx(0)Victor Stinner2011-04-271-1/+1
| | | | | | * | | | | | Issue #10785: Store the filename as Unicode in the Python parser.Victor Stinner2011-04-051-16/+24
| | | | | | * | | | | | Issue #11393: The fault handler handles also SIGABRTVictor Stinner2011-04-011-0/+1
| | | | | | * | | | | | Issue #11393: Add the new faulthandler moduleVictor Stinner2011-03-311-0/+21
* | | | | | | | | | | | Issue #15001: fix segfault on "del sys.module['__main__']"Hynek Schlawack2012-11-071-6/+6
* | | | | | | | | | | | Close #13119: use "\r\n" newline for sys.stdout/err on WindowsVictor Stinner2012-08-041-5/+8
|/ / / / / / / / / / /
* | | | | | | | | | | Issue #15020: The program name used to search for Python's path is now "pytho...Antoine Pitrou2012-07-051-0/+4
| |_|_|_|_|_|_|_|_|/ |/| | | | | | | | |
* | | | | | | | | | fix parse_syntax_error to clean up its resourcesBenjamin Peterson2012-04-031-20/+31
| |_|_|_|_|_|_|_|/ |/| | | | | | | |
* | | | | | | | | Fix test failure in test_cmd_line by initializing the hash secret at the earl...Antoine Pitrou2012-02-211-1/+0
|/ / / / / / / /
* | | | | | | | Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...Georg Brandl2012-02-201-119/+252
|\ \ \ \ \ \ \ \ | | |_|_|_|_|_|/ | |/| | | | | |
| * | | | | | | Fix a memory leak when initializing the standard I/O streams.Antoine Pitrou2012-01-181-1/+2
| |/ / / / / /
| * | | | | | Issue #7111: Python can now be run without a stdin, stdout or stderr stream.Antoine Pitrou2011-11-281-15/+16
| | |_|_|_|/ | |/| | | |
| * | | | | Issue #13444: When stdout has been closed explicitly, we should not attempt t...Antoine Pitrou2011-11-261-2/+18
| | |_|_|/ | |/| | |
| * | | | - Issue #13021: Missing decref on an error path. Thanks to Suman Saha forBarry Warsaw2011-09-201-1/+3
| |/ / /
| * | | Merge #6498 fix from 3.1.Georg Brandl2011-05-151-1/+1
| |\ \ \ | | |/ / | |/| |
| * | | Issue #1856: Avoid crashes and lockups when daemon threads run while theAntoine Pitrou2011-05-041-4/+11
| * | | Issue #10914: Initialize correctly the filesystem codec when creating a newVictor Stinner2011-04-271-8/+15
| * | | Issue #10914: Py_NewInterpreter() uses PyErr_PrintEx(0)Victor Stinner2011-04-271-1/+1
| | |/ | |/|
| * | Fix #11586: typo in initfsencoding()Victor Stinner2011-03-201-1/+1
| * | Merged revisions 88530 via svnmerge fromVictor Stinner2011-02-231-1/+10
| * | Issue #9566: use Py_ssize_t instead of intVictor Stinner2011-01-041-1/+2
| * | Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric...Georg Brandl2010-12-281-0/+1
| * | Add an "optimize" parameter to compile() to control the optimization level, a...Georg Brandl2010-12-041-4/+12
| * | Merge branches/pep-0384.Martin v. Löwis2010-12-031-2/+10