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
/
Python
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-32030: Add pymain_get_global_config() (#4735)
Victor Stinner
2017-12-06
2
-9/+12
*
bpo-32030: pass interp to _PyImport_Init() (#4736)
Victor Stinner
2017-12-06
2
-10/+2
*
bpo-32030: Simplify _PyCoreConfig_INIT macro (#4728)
Victor Stinner
2017-12-05
1
-7/+2
*
Revert "bpo-32197: Try to fix a compiler error on OS X introduced in bpo-3203...
Victor Stinner
2017-12-04
2
-58/+272
*
Refactor PyImport_ImportModuleLevelObject(). (#4680)
Neil Schemenauer
2017-12-03
1
-50/+57
*
bpo-32176: Set CO_NOFREE in the code object constructor (GH-4675)
Nick Coghlan
2017-12-03
1
-5/+0
*
bpo-32197: Try to fix a compiler error on OS X introduced in bpo-32030. (#4681)
Serhiy Storchaka
2017-12-02
2
-272/+58
*
bpo-32030: _PyPathConfig_Init() sets home and program_name (#4673)
Victor Stinner
2017-12-02
2
-43/+125
*
bpo-32030: Add Python/pathconfig.c (#4668)
Victor Stinner
2017-12-01
2
-55/+189
*
bpo-32030: Don't call _PyPathConfig_Fini() in Py_FinalizeEx() (#4667)
Victor Stinner
2017-12-01
1
-2/+0
*
Don't hide unexpected errors in PyErr_WarnExplicitObject(). (#4585)
Serhiy Storchaka
2017-12-01
1
-9/+10
*
bpo-10544: Deprecate "yield" in comprehensions and generator expressions. (GH...
Serhiy Storchaka
2017-12-01
1
-1/+30
*
bpo-20891: Fix PyGILState_Ensure() (#4650)
Victor Stinner
2017-11-30
1
-6/+18
*
bpo-32030: Fix _Py_InitializeEx_Private() (#4649)
Victor Stinner
2017-11-30
1
-6/+13
*
bpo-32101: Add PYTHONDEVMODE environment variable (#4624)
Victor Stinner
2017-11-30
1
-1/+4
*
bpo-32030: Rework memory allocators (#4625)
Victor Stinner
2017-11-29
2
-8/+20
*
bpo-32150: Expand tabs to spaces in C files. (#4583)
Serhiy Storchaka
2017-11-28
6
-27/+27
*
bpo-27535: Fix memory leak with warnings ignore (#4489)
Victor Stinner
2017-11-27
1
-4/+9
*
bpo-32089: Use default action for ResourceWarning (#4584)
Victor Stinner
2017-11-27
1
-3/+2
*
mark fatal_error as noreturn (#4563)
Benjamin Peterson
2017-11-25
1
-1/+1
*
bpo-32030: Add _PyPathConfig_Init() (#4551)
Victor Stinner
2017-11-25
1
-9/+19
*
bpo-32030: Add _PyMainInterpreterConfig.program_name (#4548)
Victor Stinner
2017-11-24
1
-4/+18
*
bpo-32030: Add _PyMainInterpreterConfig_ReadEnv() (#4542)
Victor Stinner
2017-11-24
1
-26/+19
*
bpo-32125: Remove Py_UseClassExceptionsFlag flag (#4544)
Victor Stinner
2017-11-24
1
-1/+0
*
bpo-32096: Remove obj and mem from _PyRuntime (#4532)
Victor Stinner
2017-11-24
1
-2/+0
*
bpo-27535: Cleanup create_filter() (#4516)
Victor Stinner
2017-11-23
1
-38/+18
*
bpo-32030: Rewrite calculate_path() (#4521)
Victor Stinner
2017-11-23
1
-8/+17
*
bpo-32030: Add _PyMainInterpreterConfig.pythonhome (#4513)
Victor Stinner
2017-11-23
2
-20/+49
*
bpo-32030: Move PYTHONPATH to _PyMainInterpreterConfig (#4511)
Victor Stinner
2017-11-23
1
-2/+2
*
bpo-32030: Add _PyCoreConfig.module_search_path_env (#4504)
Victor Stinner
2017-11-22
2
-47/+54
*
bpo-27535: Optimize warnings.warn() (#4508)
Victor Stinner
2017-11-22
1
-42/+33
*
bpo-32030: Add more options to _PyCoreConfig (#4485)
Victor Stinner
2017-11-21
3
-11/+11
*
bpo-32089: Fix warnings filters in dev mode (#4482)
Victor Stinner
2017-11-21
1
-10/+27
*
bpo-32088: Display Deprecation in debug mode (#4474)
Victor Stinner
2017-11-20
1
-0/+7
*
bpo-32043: New "developer mode": "-X dev" option (#4413)
Victor Stinner
2017-11-16
1
-0/+8
*
bpo-32030: Enhance Py_Main() (#4412)
Victor Stinner
2017-11-16
4
-120/+84
*
bpo-32030: Split Py_Main() into subfunctions (#4399)
Victor Stinner
2017-11-15
6
-211/+396
*
bpo-30950: Convert round() to Argument Clinic. (#2740)
Serhiy Storchaka
2017-11-15
2
-20/+51
*
bpo-32011: Revert "Issue #15480: Remove the deprecated and unused TYPE_INT64 ...
Serhiy Storchaka
2017-11-15
1
-0/+21
*
bpo-32023: Disallow genexprs without parenthesis in class definitions. (#4400)
Serhiy Storchaka
2017-11-15
1
-5/+10
*
bpo-31949: Fixed several issues in printing tracebacks (PyTraceBack_Print())....
Serhiy Storchaka
2017-11-15
1
-51/+51
*
bpo-32012: Disallow trailing comma after genexpr without parenthesis. (#4382)
Serhiy Storchaka
2017-11-15
1
-10/+9
*
bpo-30696: Fix the REPL looping endlessly when no memory (GH-4160)
xdegaye
2017-11-12
1
-18/+42
*
bpo-28180: Fix the implementation of PEP 538 on Android (GH-4334)
xdegaye
2017-11-12
1
-12/+65
*
bpo-31572: Get rid of _PyObject_HasAttrId() in the ASDL parser. (#3725)
Serhiy Storchaka
2017-11-11
1
-610/+774
*
bpo-31572: Don't silence unexpected errors in the _warnings module. (#3731)
Serhiy Storchaka
2017-11-11
1
-68/+89
*
Add the const qualifier to "char *" variables that refer to literal strings. ...
Serhiy Storchaka
2017-11-11
5
-5/+6
*
Replace KB unit with KiB (#4293)
Victor Stinner
2017-11-08
3
-7/+7
*
bpo-31415: Improve error handling and caching of the importtime option. (#4138)
Serhiy Storchaka
2017-11-07
1
-13/+20
*
Fix miscellaneous typos (#4275)
luzpaz
2017-11-05
3
-3/+3
[next]