summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-33041: Add missed error checks when compile "async for" (GH-6053) (...Miss Islington (bot)2018-03-101-13/+7
* Revert "[3.6] bpo-32303 - Consistency fixes for namespace loaders (GH-5481) (...Barry Warsaw2018-02-262-1434/+1433
* bpo-32869: Fix incorrect dst buffer size for MultiByteToWideChar (GH-5739)Miss Islington (bot)2018-02-181-1/+2
* bpo-32777: Fix _Py_set_inheritable async-safety in subprocess (GH-5560) (GH-5...Miss Islington (bot)2018-02-061-3/+16
* [3.6] bpo-32746: Fix multiple typos (GH-5144) (GH-5522)Terry Jan Reedy2018-02-041-2/+2
* [3.6] bpo-32303 - Consistency fixes for namespace loaders (GH-5481) (#5504)Barry Warsaw2018-02-032-1433/+1434
* bpo-32674: Improve the docstring for __import__ (GH-5339) (GH-5489)Miss Islington (bot)2018-02-021-3/+3
* Fix typo in thread_nt.h code comment (GH-5211) (GH-5226)Miss Islington (bot)2018-01-181-1/+1
* [3.6] bpo-32555: Fix locale encodings (#5193)Victor Stinner2018-01-151-94/+157
* [3.6] bpo-31900: Fix localeconv() encoding for LC_NUMERIC (#4174) (#5192)Victor Stinner2018-01-152-11/+81
* advance copyright years to 2018 (GH-5094) (#5104)Miss Islington (bot)2018-01-061-1/+1
* bpo-32365: Fix a reference leak when compile __debug__. (GH-4916) (#4918)Miss Islington (bot)2017-12-181-4/+4
* compile.c: Remove unused varible (#4886)Victor Stinner2017-12-151-1/+0
* [3.6] bpo-30416: Protect the optimizer during constant folding. (#4865)Serhiy Storchaka2017-12-151-15/+131
* [3.6] bpo-27169: The __debug__ constant is now optimized out at compile time....Serhiy Storchaka2017-12-151-30/+15
* bpo-32329: Fix sys.flags.hash_randomization (#4875)Victor Stinner2017-12-152-4/+3
* [3.6] bpo-32176: Set CO_NOFREE in the code object constructor (GH-4684)Nick Coghlan2017-12-031-12/+0
* Don't hide unexpected errors in PyErr_WarnExplicitObject(). (GH-4585) (#4662)Miss Islington (bot)2017-12-011-9/+10
* bpo-20891: Fix PyGILState_Ensure() (#4650) (#4655)Victor Stinner2017-11-301-6/+17
* bpo-32011: Revert "Issue GH-15480: Remove the deprecated and unused TYPE_INT6...Miss Islington (bot)2017-11-151-0/+21
* [3.6] bpo-31949: Fixed several issues in printing tracebacks (PyTraceBack_Pri...Serhiy Storchaka2017-11-151-51/+51
* [3.6] bpo-30696: Fix the REPL looping endlessly when no memory (GH-4160). (#4...xdegaye2017-11-121-18/+42
* [3.6] bpo-30697: Fix PyErr_NormalizeException() when no memory (GH-2327). (#4...xdegaye2017-10-261-16/+30
* [3.6] bpo-21720: Restore the Python 2.7 logic in handling a fromlist. (GH-411...Serhiy Storchaka2017-10-261-1583/+1593
* [3.6] bpo-30817: Fix PyErr_PrintEx() when no memory (GH-2526). (#4107)xdegaye2017-10-241-3/+9
* bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (GH-4058) (#4059)Miss Islington (bot)2017-10-201-1/+1
* [3.6] bpo-31786: Make functions in the select module blocking when timeout is...Pablo Galindo2017-10-181-8/+28
* [3.6] bpo-28603: Fix formatting tracebacks for unhashable exceptions (GH-4014...Miss Islington (bot)2017-10-171-3/+18
* [3.6] bpo-31780: Fix incorrect error message for ',x', ',b', ',o' specs (GH-4...Miss Islington (bot)2017-10-151-2/+2
* [3.6] bpo-31642: Restore blocking "from" import by setting None in sys.module...Serhiy Storchaka2017-10-081-238/+241
* [3.6] remove tabs from getcompiler.c (GH-3892) (#3893)Miss Islington (bot)2017-10-051-1/+1
* [3.6] bpo-31592: Fix an assertion failure in Python parser in case of a bad u...Miss Islington (bot)2017-09-301-12/+16
* [3.6] bpo-31285: Remove splitlines identifier from Python/_warnings.c (GH-380...Miss Islington (bot)2017-09-291-3/+0
* [3.6] bpo-31588: Validate return value of __prepare__() methods (GH-3790)Miss Islington (bot)2017-09-271-0/+7
* [3.6] bpo-31285: Fix an assertion failure and a SystemError in warnings.warn_...Serhiy Storchaka2017-09-271-3/+1
* [3.6] bpo-31492: Fix assertion failures in case of a module with a bad __name...Serhiy Storchaka2017-09-271-0/+4
* [3.6] bpo-31566: Fix an assertion failure in _warnings.warn() in case of a ba...Miss Islington (bot)2017-09-241-3/+4
* [3.6] bpo-31315: Fix an assertion failure in imp.create_dynamic(), when spec....Miss Islington (bot)2017-09-191-0/+5
* [3.6] bpo-31418: Fix an assertion failure in PyErr_WriteUnraisable() in case ...Miss Islington (bot)2017-09-141-1/+1
* [3.6] bpo-30923: Silence fall-through warnings included in -Wextra since gcc-...Victor Stinner2017-09-129-14/+27
* [3.6] bpo-31416: Fix assertion failures in case of a bad warnings.filters or ...Serhiy Storchaka2017-09-121-3/+16
* [3.6] bpo-31373: remove overly strict float range checks (GH-3486) (#3495)Benjamin Peterson2017-09-121-4/+0
* [3.6] bpo-31411: Prevent raising a SystemError in case warnings.onceregistry ...Serhiy Storchaka2017-09-111-1/+7
* [3.6] bpo-29526: Add reference to help('FORMATTING') in format() builtin (GH-...Serhiy Storchaka2017-09-112-4/+8
* [3.6] bpo-26669: Fix nan arg value error in pytime.c (GH-3085) (GH-3467) Miss Islington (bot)2017-09-091-0/+14
* [3.6] bpo-31393: Fix the use of PyUnicode_READY(). (GH-3451). (#3453)Serhiy Storchaka2017-09-081-7/+10
* [3.6] bpo-30640: Fix undefined behavior in _PyFunction_FastCallDict() and PyE...Zackery Spytz2017-09-081-2/+3
* [3.6] fixes bpo-31373: fix undefined floating-point demotions (GH-3396) (#3424)Miss Islington (bot)2017-09-072-16/+21
* bpo-30465: Fix lineno and col_offset in fstring AST nodes (GH-1800) (gh-3409)Miss Islington (bot)2017-09-071-5/+67
* bpo-31095: fix potential crash during GC (GH-3195)INADA Naoki2017-09-041-0/+2