summaryrefslogtreecommitdiff
path: root/Modules/main.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #23752: _Py_fstat() is now responsible to raise the Python exceptionVictor Stinner2015-03-301-2/+4
* Back-out wcstok deprecation suppression and updates calls to use wcstok_s.Steve Dower2015-02-251-3/+3
* Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Wind...Steve Dower2015-02-211-3/+2
* Issue #20597: Remove unused definition of PATH_MAX on Windows, MAXPATHLEN isVictor Stinner2014-11-051-1/+0
* Issue #18395: Rename ``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, renameVictor Stinner2014-08-011-2/+2
* Issue #20355: -W command line options now have higher priority than the PYTHO...Antoine Pitrou2014-04-291-1/+18
* Issue #16136: Remove VMS support and VMS-related codeChristian Heimes2013-12-211-29/+0
* Issue #19512, #19515: remove shared identifiers, move identifiers where theyVictor Stinner2013-11-071-1/+1
* Issue #19512: add some common identifiers to only create common strings once,Victor Stinner2013-11-061-1/+1
* Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-281-1/+1
* Issue #16400: Add command line option for isolated mode.Christian Heimes2013-08-101-1/+8
* #16937: merge with 3.3.Ezio Melotti2013-07-251-1/+2
|\
| * #16937: document that stdin is always buffered, even when -u is used. Patch ...Ezio Melotti2013-07-251-1/+2
* | Issue #18408: handle PySys_GetObject() failure, raise a RuntimeErrorVictor Stinner2013-07-161-1/+3
* | Issue #18338: `python --version` now prints version string to stdout, andSerhiy Storchaka2013-07-111-1/+1
* | Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup()Victor Stinner2013-07-071-2/+2
* | Issue #18203: Replace malloc() with PyMem_RawMalloc() at Python initializationVictor Stinner2013-07-071-7/+7
* | Issue #5845: Enable tab-completion in the interactive interpreter by default,...Antoine Pitrou2013-05-041-0/+28
* | Close #14439: Python now prints the traceback on runpy failure at startup.Victor Stinner2013-04-101-0/+4
* | #16306: merge with 3.3.Ezio Melotti2012-11-231-0/+1
|\ \ | |/
| * #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
* | | #16135: Removal of OS/2 support (posixmodule y platform dependent files)Jesus Cea2012-10-051-5/+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-041-1/+1
|\ \ | |/
| * Fix issue # 15033 - Return the proper exitcode for failure when modules are i...Senthil Kumaran2012-07-041-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-211-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-311-0/+1