summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-32101: Add PYTHONDEVMODE environment variable (#4624)Victor Stinner2017-11-301-1/+4
* bpo-32030: Rework memory allocators (#4625)Victor Stinner2017-11-292-8/+20
* bpo-32150: Expand tabs to spaces in C files. (#4583)Serhiy Storchaka2017-11-286-27/+27
* bpo-27535: Fix memory leak with warnings ignore (#4489)Victor Stinner2017-11-271-4/+9
* bpo-32089: Use default action for ResourceWarning (#4584)Victor Stinner2017-11-271-3/+2
* mark fatal_error as noreturn (#4563)Benjamin Peterson2017-11-251-1/+1
* bpo-32030: Add _PyPathConfig_Init() (#4551)Victor Stinner2017-11-251-9/+19
* bpo-32030: Add _PyMainInterpreterConfig.program_name (#4548)Victor Stinner2017-11-241-4/+18
* bpo-32030: Add _PyMainInterpreterConfig_ReadEnv() (#4542)Victor Stinner2017-11-241-26/+19
* bpo-32125: Remove Py_UseClassExceptionsFlag flag (#4544)Victor Stinner2017-11-241-1/+0
* bpo-32096: Remove obj and mem from _PyRuntime (#4532)Victor Stinner2017-11-241-2/+0
* bpo-27535: Cleanup create_filter() (#4516)Victor Stinner2017-11-231-38/+18
* bpo-32030: Rewrite calculate_path() (#4521)Victor Stinner2017-11-231-8/+17
* bpo-32030: Add _PyMainInterpreterConfig.pythonhome (#4513)Victor Stinner2017-11-232-20/+49
* bpo-32030: Move PYTHONPATH to _PyMainInterpreterConfig (#4511)Victor Stinner2017-11-231-2/+2
* bpo-32030: Add _PyCoreConfig.module_search_path_env (#4504)Victor Stinner2017-11-222-47/+54
* bpo-27535: Optimize warnings.warn() (#4508)Victor Stinner2017-11-221-42/+33
* bpo-32030: Add more options to _PyCoreConfig (#4485)Victor Stinner2017-11-213-11/+11
* bpo-32089: Fix warnings filters in dev mode (#4482)Victor Stinner2017-11-211-10/+27
* bpo-32088: Display Deprecation in debug mode (#4474)Victor Stinner2017-11-201-0/+7
* bpo-32043: New "developer mode": "-X dev" option (#4413)Victor Stinner2017-11-161-0/+8
* bpo-32030: Enhance Py_Main() (#4412)Victor Stinner2017-11-164-120/+84
* bpo-32030: Split Py_Main() into subfunctions (#4399)Victor Stinner2017-11-156-211/+396
* bpo-30950: Convert round() to Argument Clinic. (#2740)Serhiy Storchaka2017-11-152-20/+51
* bpo-32011: Revert "Issue #15480: Remove the deprecated and unused TYPE_INT64 ...Serhiy Storchaka2017-11-151-0/+21
* bpo-32023: Disallow genexprs without parenthesis in class definitions. (#4400)Serhiy Storchaka2017-11-151-5/+10
* bpo-31949: Fixed several issues in printing tracebacks (PyTraceBack_Print())....Serhiy Storchaka2017-11-151-51/+51
* bpo-32012: Disallow trailing comma after genexpr without parenthesis. (#4382)Serhiy Storchaka2017-11-151-10/+9
* bpo-30696: Fix the REPL looping endlessly when no memory (GH-4160)xdegaye2017-11-121-18/+42
* bpo-28180: Fix the implementation of PEP 538 on Android (GH-4334)xdegaye2017-11-121-12/+65
* bpo-31572: Get rid of _PyObject_HasAttrId() in the ASDL parser. (#3725)Serhiy Storchaka2017-11-111-610/+774
* bpo-31572: Don't silence unexpected errors in the _warnings module. (#3731)Serhiy Storchaka2017-11-111-68/+89
* Add the const qualifier to "char *" variables that refer to literal strings. ...Serhiy Storchaka2017-11-115-5/+6
* Replace KB unit with KiB (#4293)Victor Stinner2017-11-083-7/+7
* bpo-31415: Improve error handling and caching of the importtime option. (#4138)Serhiy Storchaka2017-11-071-13/+20
* Fix miscellaneous typos (#4275)luzpaz2017-11-053-3/+3
* bpo-28994: PyErr_NormalizeException() no longer use C stack for recursion. (#...Serhiy Storchaka2017-11-051-39/+33
* bpo-31415: Support PYTHONPROFILEIMPORTTIME envvar equivalent to -X importtime...Barry Warsaw2017-11-021-4/+11
* bpo-31784: Implement PEP 564: add time.time_ns() (#3989)Victor Stinner2017-11-021-19/+86
* bpo-28936: Detect lexically first syntax error first (#4097)Ivan Levkivskyi2017-10-261-18/+16
* Fix trailing whitespaces in C files. (#4130)Serhiy Storchaka2017-10-261-1/+1
* bpo-30697: Fix PyErr_NormalizeException() when no memory (GH-2327)xdegaye2017-10-261-16/+30
* bpo-21720: Restore the Python 2.7 logic in handling a fromlist. (#4118)Serhiy Storchaka2017-10-261-1773/+1783
* bpo-31857: Make the behavior of USE_STACKCHECK deterministic (#4098)pdox2017-10-262-1/+4
* remove support for splitting the ceval switch into multiple switches (#4099)Benjamin Peterson2017-10-251-10/+0
* bpo-31845: Fix reading flags from environment (GH-4105)Nick Coghlan2017-10-251-14/+23
* bpo-30768: Recompute timeout on interrupted lock (GH-4103)Victor Stinner2017-10-242-10/+54
* bpo-30817: Fix PyErr_PrintEx() when no memory (#2526)xdegaye2017-10-231-3/+9
* Move exc state to generator. Fixes bpo-25612 (#1773)Mark Shannon2017-10-224-127/+64
* bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (#4058)Serhiy Storchaka2017-10-201-1/+1