summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* 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
* Move opcode tracing to occur after the possible update to f_lineno. (GH-3798)George King2017-10-191-4/+4
* bpo-28603: Fix formatting tracebacks for unhashable exceptions (#4014)Zane Bitter2017-10-171-3/+18
* bpo-31786: Make functions in the select module blocking when timeout is a sma...Pablo Galindo2017-10-171-2/+15
* bpo-31773: _PyTime_GetPerfCounter() uses _PyTime_t (GH-3983)Victor Stinner2017-10-162-42/+128
* bpo-31780: Fix incorrect error message for ',x', ',b', ',o' specs (#4002)Dargor2017-10-151-2/+2
* bpo-31773: time.perf_counter() uses again double (GH-3964)Victor Stinner2017-10-122-21/+27
* Cleanup pytime.c (#3955)Victor Stinner2017-10-111-54/+76
* bpo-31415: Add _PyTime_GetPerfCounter() and use it for -X importtime (#3936)Victor Stinner2017-10-102-12/+73
* bpo-31642: Restore blocking "from" import by setting None in sys.modules. (#3...Serhiy Storchaka2017-10-081-242/+244
* bpo-31709: Update importlib magic (#3906)Yury Selivanov2017-10-061-104/+104
* bpo-25658: Implement PEP 539 for Thread Specific Storage (TSS) API (GH-1362)Masayuki Yamamoto2017-10-065-77/+228
* bpo-31708: Allow async generator expressions in synchronous functions (#3905)Yury Selivanov2017-10-061-1/+1
* bpo-31709: Drop support for asynchronous __aiter__. (#3903)Yury Selivanov2017-10-062-51/+7
* closes bpo-31696: don't mention GCC in sys.version when building with clang (...Benjamin Peterson2017-10-061-8/+7
* bpo-30406: Make async and await proper keywords (#1669)Jelle Zijlstra2017-10-062-190/+198
* PEP 553 built-in breakpoint() function (bpo-31353) (#3355)Barry Warsaw2017-10-052-0/+103
* remove tabs from getcompiler.c (#3892)Benjamin Peterson2017-10-051-1/+1
* bpo-30404: The -u option now makes the stdout and stderr streams totally unbu...Serhiy Storchaka2017-10-041-4/+8
* bpo-31683: Py_FatalError() now supports long error messages (#3878)Victor Stinner2017-10-041-20/+42
* bpo-31415: Add `-X importtime` option (GH-3490)INADA Naoki2017-10-031-0/+42
* bpo-31592: Fix an assertion failure in Python parser in case of a bad unicode...Oren Milman2017-09-301-12/+16
* bpo-31574: importlib dtrace (#3749)Christian Heimes2017-09-291-0/+10
* bpo-31285: Remove splitlines identifier from Python/_warnings.c (#3803)Oren Milman2017-09-291-3/+0
* remove support for BSD/OS (closes bpo-31624) (#3812)Benjamin Peterson2017-09-291-21/+0
* bpo-31588: Validate return value of __prepare__() methods (GH-3764)Oren Milman2017-09-271-0/+7
* bpo-31566: Fix an assertion failure in _warnings.warn() in case of a bad __na...Oren Milman2017-09-241-3/+4
* bpo-31285: Fix an assertion failure and a SystemError in warnings.warn_explic...Oren Milman2017-09-241-3/+1
* bpo-31315: Fix an assertion failure in imp.create_dynamic(), when spec.name i...Oren Milman2017-09-191-0/+5
* bpo-31492: Fix assertion failures in case of a module with a bad __name__ att...Oren Milman2017-09-191-0/+4
* Trivial cleanups following bpo-31370 (#3649)Antoine Pitrou2017-09-182-168/+159
* bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593)Eric Snow2017-09-155-63/+128
* bpo-31338 (#3374)Barry Warsaw2017-09-158-27/+15
* bpo-28411: Isolate PyInterpreterState.modules (#3575)Eric Snow2017-09-145-47/+84
* bpo-30860: Fix a refleak. (#3567)Eric Snow2017-09-144-27/+31
* bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)Eric Snow2017-09-149-238/+111
* bpo-31418: Fix an assertion failure in PyErr_WriteUnraisable() in case of an ...Oren Milman2017-09-131-1/+1
* bpo-30860: Fix a refleak. (#3506)Eric Snow2017-09-124-27/+31
* bpo-31416: Fix assertion failures in case of a bad warnings.filters or warnin...Oren Milman2017-09-111-3/+16
* bpo-31373: remove overly strict float range checks (#3486)Benjamin Peterson2017-09-111-4/+0