summaryrefslogtreecommitdiffstats
path: root/Modules/main.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-31845: Fix reading flags from environment (GH-4105)Nick Coghlan2017-10-251-30/+24
* bpo-28647: Update -u documentation after bpo-30404 (GH-3961)Berker Peksag2017-10-131-3/+2
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-081-7/+1
* Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)Eric Snow2017-09-061-1/+7
* bpo-30860: Consolidate stateful runtime globals. (#2594)Eric Snow2017-09-061-7/+1
* bpo-30565: Add PYTHONCOERCECLOCALE=warn runtime flag (GH-2260)Nick Coghlan2017-06-181-4/+3
* bpo-30636: Fix the indentation for the help (#2131)Stéphane Wirtel2017-06-131-1/+1
* bpo-30636: Add PYTHONCOERCECLOCALE to the help of the command line (GH-2125)Stéphane Wirtel2017-06-121-0/+4
* bpo-22257: Private C-API for main interpreter initialization (PEP 432). (#1729)Eric Snow2017-05-241-2/+15
* bpo-22257: Private C-API for core runtime initialization (PEP 432). (#1772)Eric Snow2017-05-241-16/+19
* bpo-22257: Fix CLI by using int instead of char (compares to EOF). (#1765)Eric Snow2017-05-231-1/+1
* bpo-22257: Small changes for PEP 432. (#1728)Eric Snow2017-05-231-107/+180
* bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)Serhiy Storchaka2017-04-161-1/+1
* bpo-29723: Consistently configure sys.path[0] (#575)Nick Coghlan2017-03-121-28/+44
* bpo-29770: remove outdated PYO related info (GH-590)Xiang Zhang2017-03-111-1/+1
* Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].Steve Dower2017-02-041-2/+12
|\
| * Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].Steve Dower2017-02-041-2/+12
| |\
| | * Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].Steve Dower2017-02-041-2/+12
* | | Issue #28768: Fix implicit declaration of function _setmode. Patch by Masayuk...Steve Dower2016-12-281-0/+3
|\ \ \ | |/ /
| * | Issue #28768: Fix implicit declaration of function _setmode. Patch by Masayuk...Steve Dower2016-12-281-0/+3
* | | Use _PyObject_CallNoArg()Victor Stinner2016-12-061-1/+1
|/ /
* | Issue #28532: Show sys.version when -V option is supplied twiceINADA Naoki2016-11-211-1/+2
* | Issue #28192: Don't import readline in isolated modeSteve Dower2016-09-171-1/+2
* | Check return value of PyList_Append() in Py_Main(). CID 1353200Christian Heimes2016-09-081-1/+2
* | Add PYTHONMALLOC env varVictor Stinner2016-03-141-8/+17
* | Fixed formatting comman-line usage message.Serhiy Storchaka2015-12-301-4/+4
|\ \ | |/
| * Fixed formatting comman-line usage message.Serhiy Storchaka2015-12-301-4/+4
* | Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-1/+1
* | Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-251-7/+7
* | Issue #5319: New Py_FinalizeEx() API to exit with status 120 on failureMartin Panter2015-11-301-2/+6
|/
* 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-261-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-281-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-271-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-091-0/+4
* | #16306: merge with 3.3.Ezio Melotti2012-11-231-0/+1
|\ \ | |/