summaryrefslogtreecommitdiffstats
path: root/Modules/main.c
Commit message (Expand)AuthorAgeFilesLines
* #16306: merge with 3.2.Ezio Melotti2012-11-231-0/+1
|\
| * #16306: report only the first unknown option and add more tests. Patch by Se...Ezio Melotti2012-11-231-0/+1
* | Fix for issue 15716: interpreter could crash when PYTHONEXECUTABLE was set on...Ronald Oussoren2012-08-221-1/+1
|\ \ | |/
| * Fix for issue 15716: interpreter could crash when PYTHONEXECUTABLE was set on...Ronald Oussoren2012-08-221-1/+1
* | Closes #15307: symlinks now work on OS X with framework Python builds. Patch...Vinay Sajip2012-07-171-0/+22
* | Fix issue # 15033 - Return the proper exitcode for failure when modules are i...Senthil Kumaran2012-07-051-1/+1
|\ \ | |/
| * Fix issue # 15033 - Return the proper exitcode for failure when modules are i...Senthil Kumaran2012-07-051-1/+1
* | Issue #14605: Use None in sys.path_importer_cache to represent noBrett Cannon2012-04-271-1/+1
* | merge with 3.2Georg Brandl2012-02-211-1/+1
|\ \ | |/
| * merge with 3.2Georg Brandl2012-02-211-3/+3
| |\
| | * Remove reST markup from --help output. Also: O(n**2) is dict construction, n...Georg Brandl2012-02-211-3/+3
* | | enable hash randomization by defaultBenjamin Peterson2012-02-211-18/+7
* | | Fix test failure in test_cmd_line by initializing the hash secret at the earl...Antoine Pitrou2012-02-211-2/+28
|\ \ \ | |/ /
| * | Fix test failure in test_cmd_line by initializing the hash secret at the earl...Antoine Pitrou2012-02-211-2/+28
* | | Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-201-3/+17
|\ \ \ | |/ /
| * | Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...Georg Brandl2012-02-201-3/+17
| |\ \ | | |/
| | * Issue #13703: add a way to randomize the hash values of basic types (str, byt...Georg Brandl2012-02-201-1/+15
| | * Merged revisions 87991 via svnmerge fromEli Bendersky2011-01-141-1/+0
| | * Merged revisions 81250-81253 via svnmerge fromVictor Stinner2010-05-171-4/+8
| | * Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-483/+483
| | * Merged revisions 78872 via svnmerge fromVictor Stinner2010-03-211-4/+10
| | * Merged revisions 75571,75576-75577 via svnmerge fromAntoine Pitrou2009-10-201-29/+0
| | * Merged revisions 74010,74034,74054 via svnmerge fromGeorg Brandl2009-08-131-3/+3
* | | Issue #13560: Locale codec functions use the classic "errors" parameter,Victor Stinner2011-12-171-1/+1
* | | Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale()Victor Stinner2011-12-161-8/+5
* | | Issue #10350: Read and save errno before calling a function which might overw...Antoine Pitrou2011-12-161-1/+2
|\ \ \ | |/ /
| * | Issue #10350: Read and save errno before calling a function which might overw...Antoine Pitrou2011-12-161-1/+2
* | | Issue #11918: OS/2 and VMS are no more supported because of the lack ofVictor Stinner2011-04-261-0/+1
* | | Issue #11393: Add the new faulthandler moduleVictor Stinner2011-03-301-0/+1
* | | Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-221-2/+1
|/ /
* | Remove call to nonexisting function (relic from Python 2.x) under #ifdef __IN...Eli Bendersky2011-01-141-1/+0
* | Issue #10841: set binary mode on files; the parser translates newlinesVictor Stinner2011-01-071-3/+6
* | Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric...Georg Brandl2010-12-281-3/+2
* | #1772833: add -q command line option.Georg Brandl2010-12-041-3/+10
* | Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-301-1/+0
* | PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() failsVictor Stinner2010-11-081-1/+1
* | Issue #10089: Add support for arbitrary -X options on the command-line.Antoine Pitrou2010-10-211-3/+6
* | run_file(): encode the filename with PyUnicode_EncodeFSDefault() instead ofVictor Stinner2010-10-171-2/+2
* | Add an optional size argument to _Py_char2wchar()Victor Stinner2010-10-161-2/+4
* | Py_Main() uses _Py_wchar2char() to encode the filename in error messagesVictor Stinner2010-10-141-11/+11
* | Issue #9992: Remove PYTHONFSENCODING environment variable.Victor Stinner2010-10-131-3/+0
* | Create fileutils.c/.hVictor Stinner2010-10-071-208/+0
* | Rewrite RunMainFromImporter()Victor Stinner2010-10-061-25/+35
* | Isse #8589: Decode PYTHONWARNINGS from utf-8 on Mac OS XVictor Stinner2010-09-121-2/+6
* | Issue #8589: surrogateescape error handler is not available at startupVictor Stinner2010-09-101-6/+11
* | PYTHONFSENCODING is not available on Windows or Mac OS XVictor Stinner2010-08-191-7/+9
* | Improve error message if the command is not decodableVictor Stinner2010-08-181-0/+1
* | Issue #8622: Add PYTHONFSENCODING environment variable to override theVictor Stinner2010-08-181-0/+1
* | Issue #8202: Set sys.argv[0] to -m rather than -c while searching for the mod...Nick Coghlan2010-08-171-3/+2
* | Create _Py_wchar2char() function, reverse of _Py_char2wchar()Victor Stinner2010-08-131-7/+87