index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
main.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
pymain_set_sys_argv() now copies argv (#4838)
Victor Stinner
2017-12-13
1
-28/+58
*
bpo-29240: PEP 540: Add a new UTF-8 Mode (#855)
Victor Stinner
2017-12-13
1
-53/+93
*
bpo-32230: Set sys.warnoptions with -X dev (#4820)
Victor Stinner
2017-12-12
1
-0/+66
*
bpo-32241: Add the const qualifire to declarations of umodifiable strings. (#...
Serhiy Storchaka
2017-12-12
1
-23/+23
*
closes bpo-31650: PEP 552 (Deterministic pycs) implementation (#4575)
Benjamin Peterson
2017-12-09
1
-1/+30
*
bpo-32030: Add _PyImport_Fini2() (#4737)
Victor Stinner
2017-12-06
1
-18/+26
*
bpo-32030: Add pymain_get_global_config() (#4735)
Victor Stinner
2017-12-06
1
-57/+113
*
bpo-32030: Simplify _PyCoreConfig_INIT macro (#4728)
Victor Stinner
2017-12-05
1
-9/+3
*
Revert "bpo-32197: Try to fix a compiler error on OS X introduced in bpo-3203...
Victor Stinner
2017-12-04
1
-58/+63
*
bpo-32197: Try to fix a compiler error on OS X introduced in bpo-32030. (#4681)
Serhiy Storchaka
2017-12-02
1
-63/+58
*
bpo-32030: _PyPathConfig_Init() sets home and program_name (#4673)
Victor Stinner
2017-12-02
1
-17/+21
*
bpo-32030: Fix config_get_program_name() on macOS (#4669)
Victor Stinner
2017-12-01
1
-2/+2
*
bpo-32030: Add Python/pathconfig.c (#4668)
Victor Stinner
2017-12-01
1
-3/+3
*
bpo-32030: Don't call _PyPathConfig_Fini() in Py_FinalizeEx() (#4667)
Victor Stinner
2017-12-01
1
-12/+18
*
bpo-32030: Fix Py_GetPath(): init program_name (#4665)
Victor Stinner
2017-12-01
1
-37/+32
*
bpo-32101: Add PYTHONDEVMODE environment variable (#4624)
Victor Stinner
2017-11-30
1
-2/+5
*
bpo-32030: Rework memory allocators (#4625)
Victor Stinner
2017-11-29
1
-12/+7
*
bpo-31440: Changed default module search path for windows
gauravbackback
2017-11-28
1
-2/+2
*
bpo-32030: Add _PyPathConfig_Init() (#4551)
Victor Stinner
2017-11-25
1
-2/+2
*
bpo-32030: Add _PyMainInterpreterConfig.program_name (#4548)
Victor Stinner
2017-11-24
1
-5/+16
*
bpo-32030: Add _PyMainInterpreterConfig_ReadEnv() (#4542)
Victor Stinner
2017-11-24
1
-46/+51
*
bpo-32030: Rewrite calculate_path() (#4521)
Victor Stinner
2017-11-23
1
-31/+25
*
bpo-32030: Add _PyMainInterpreterConfig.pythonhome (#4513)
Victor Stinner
2017-11-23
1
-14/+67
*
bpo-32030: Move PYTHONPATH to _PyMainInterpreterConfig (#4511)
Victor Stinner
2017-11-23
1
-9/+9
*
bpo-32030: Add _PyCoreConfig.module_search_path_env (#4504)
Victor Stinner
2017-11-22
1
-11/+63
*
bpo-32030: Add more options to _PyCoreConfig (#4485)
Victor Stinner
2017-11-21
1
-1/+9
*
bpo-32089: Fix warnings filters in dev mode (#4482)
Victor Stinner
2017-11-21
1
-7/+2
*
bpo-32043: New "developer mode": "-X dev" option (#4413)
Victor Stinner
2017-11-16
1
-0/+10
*
bpo-32030: Enhance Py_Main() (#4412)
Victor Stinner
2017-11-16
1
-118/+322
*
bpo-32030: Split Py_Main() into subfunctions (#4399)
Victor Stinner
2017-11-15
1
-344/+778
*
Add the const qualifier to "char *" variables that refer to literal strings. ...
Serhiy Storchaka
2017-11-11
1
-1/+1
*
bpo-31845: Fix reading flags from environment (GH-4105)
Nick Coghlan
2017-10-25
1
-30/+24
*
bpo-28647: Update -u documentation after bpo-30404 (GH-3961)
Berker Peksag
2017-10-13
1
-3/+2
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-08
1
-7/+1
*
Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)
Eric Snow
2017-09-06
1
-1/+7
*
bpo-30860: Consolidate stateful runtime globals. (#2594)
Eric Snow
2017-09-06
1
-7/+1
*
bpo-30565: Add PYTHONCOERCECLOCALE=warn runtime flag (GH-2260)
Nick Coghlan
2017-06-18
1
-4/+3
*
bpo-30636: Fix the indentation for the help (#2131)
Stéphane Wirtel
2017-06-13
1
-1/+1
*
bpo-30636: Add PYTHONCOERCECLOCALE to the help of the command line (GH-2125)
Stéphane Wirtel
2017-06-12
1
-0/+4
*
bpo-22257: Private C-API for main interpreter initialization (PEP 432). (#1729)
Eric Snow
2017-05-24
1
-2/+15
*
bpo-22257: Private C-API for core runtime initialization (PEP 432). (#1772)
Eric Snow
2017-05-24
1
-16/+19
*
bpo-22257: Fix CLI by using int instead of char (compares to EOF). (#1765)
Eric Snow
2017-05-23
1
-1/+1
*
bpo-22257: Small changes for PEP 432. (#1728)
Eric Snow
2017-05-23
1
-107/+180
*
bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)
Serhiy Storchaka
2017-04-16
1
-1/+1
*
bpo-29723: Consistently configure sys.path[0] (#575)
Nick Coghlan
2017-03-12
1
-28/+44
*
bpo-29770: remove outdated PYO related info (GH-590)
Xiang Zhang
2017-03-11
1
-1/+1
*
Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].
Steve Dower
2017-02-04
1
-2/+12
|
\
|
*
Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].
Steve Dower
2017-02-04
1
-2/+12
|
|
\
|
|
*
Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].
Steve Dower
2017-02-04
1
-2/+12
*
|
|
Issue #28768: Fix implicit declaration of function _setmode. Patch by Masayuk...
Steve Dower
2016-12-28
1
-0/+3
|
\
\
\
|
|
/
/
[next]