summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-30876: Relative import from unloaded package now reimports the package (#...Serhiy Storchaka2017-07-122-380/+365
* bpo-30891: Fix importlib _find_and_load() race condition (#2646)Victor Stinner2017-07-102-1539/+1526
* Remove _PyArg_NoStackKeywords(). (#2641)Serhiy Storchaka2017-07-101-18/+0
* bpo-30814: Fixed a race condition when import a submodule from a package. (#2...Serhiy Storchaka2017-07-062-323/+306
* bpo-30854: Fix compile error when --without-threads (#2581)Masayuki Yamamoto2017-07-051-1/+1
* bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955)Serhiy Storchaka2017-07-035-101/+27
* bpo-30832: Remove own implementation for thread-local storage (#2537)Masayuki Yamamoto2017-07-033-220/+8
* bpo-30647: Check nl_langinfo(CODESET) in locale coercion (GH-2374)Nick Coghlan2017-06-291-8/+11
* bpo-29585: Fix sysconfig.get_config_var("PYTHONFRAMEWORK") (GH-2483)INADA Naoki2017-06-291-1/+1
* bpo-30703: Improve signal delivery (#2415)Antoine Pitrou2017-06-281-21/+54
* bpo-29585: optimize site.py startup time (GH-136)INADA Naoki2017-06-281-0/+1
* [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302)Serhiy Storchaka2017-06-282-8/+19
* bpo-30765: Avoid blocking when PyThread_acquire_lock() is asked not to (#2403)Antoine Pitrou2017-06-261-45/+50
* Trivial cleanup: remove redundant variable stores in ceval.c (#2012)Adrian Wielgosik2017-06-231-6/+1
* bpo-30604: clean up co_extra support (#2144)Dino Viehland2017-06-212-5/+5
* bpo-30183: Fixes HP-UX cc compilation error in pytime.c (#1351)haney2017-06-211-0/+20
* bpo-30565: Add PYTHONCOERCECLOCALE=warn runtime flag (GH-2260)Nick Coghlan2017-06-181-25/+40
* bpo-30682: Removed a too-strict assertion that failed for certain f-strings. ...ericvsmith2017-06-161-2/+2
* bpo-30626: Fix error handling in PyImport_Import(). (#2103)Serhiy Storchaka2017-06-151-2/+6
* bpo-20627: Fix error message when keyword arguments are used (#2115)Sylvain2017-06-151-6/+6
* bpo-30501: Make the compiler producing optimized code for condition expressio...Serhiy Storchaka2017-06-114-2448/+2533
* bpo-28180: Implementation for PEP 538 (#659)Nick Coghlan2017-06-111-7/+167
* bpo-30600: Fix error messages (condition order in Argument Clinic) (#2051)Sylvain2017-06-103-63/+63
* Fix regression in error message introduced in bpo-29951. (#2028)Serhiy Storchaka2017-06-091-2/+2
* bpo-30529: Fix errors for invalid whitespaces in f-string subexpressions. (#1...Serhiy Storchaka2017-06-081-24/+7
* bpo-30592: Fixed error messages for some builtins. (#1996)Serhiy Storchaka2017-06-081-3/+3
* bpo-30598: _PySys_EndInit() now duplicates warnoptions (#1998)Victor Stinner2017-06-081-4/+4
* bpo-30547: Fix multiple reference leaks (#1995)Stéphane Wirtel2017-06-081-1/+4
* bpo-30534: Fixed error messages when pass keyword arguments (#1901)Serhiy Storchaka2017-06-061-16/+32
* bpo-30567: Fix refleak in sys.getwindowsversion (#1940)Segev Finer2017-06-041-4/+4
* Add reference to help('FORMATTING') in format() builtin (GH-166)Amit Kumar2017-05-292-4/+8
* bpo-16500: Use register_at_fork() in the threading module (#1843)Antoine Pitrou2017-05-281-18/+0
* Doc nits for bpo-16500 (#1841)Antoine Pitrou2017-05-284-7/+7
* bpo-16500: Allow registering at-fork handlers (#1715)Antoine Pitrou2017-05-271-0/+10
* Drop a duplicate line. (#1809)Eric Snow2017-05-251-2/+1
* Delete sigcheck.c since it appears unused (#1723)Segev Finer2017-05-251-19/+0
* bpo-29104: Fixed parsing backslashes in f-strings. (#490)Serhiy Storchaka2017-05-251-21/+32
* bpo-22257: Private C-API for main interpreter initialization (PEP 432). (#1729)Eric Snow2017-05-242-15/+75
* bpo-22257: Private C-API for core runtime initialization (PEP 432). (#1772)Eric Snow2017-05-242-45/+185
* Improves test_underpth_nosite_file to reveal why it fails. (#1763)Steve Dower2017-05-231-1/+6
* Update importlib.h (GH-1762)Zachary Ware2017-05-231-2/+2
* bpo-22257: Small changes for PEP 432. (#1728)Eric Snow2017-05-235-1850/+1960
* bpo-29102: Add a unique ID to PyInterpreterState. (#1639)Eric Snow2017-05-232-0/+38
* bpo-30395 _PyGILState_Reinit deadlock fix (#1734)Jason Fried2017-05-221-0/+4
* bpo-30039: Don't run signal handlers while resuming a yield from stack (#1081)Nathaniel J. Smith2017-05-171-3/+14
* bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1480)Xiang Zhang2017-05-101-1/+1
* bpo-30024: Circular imports involving absolute imports with binding (#1264)Serhiy Storchaka2017-05-091-2/+2
* bpo-30279: Remove unused Python/thread_foobar.h (#1473)Masayuki Yamamoto2017-05-052-138/+0
* bpo-30225: Fix is_valid_fd() on macOS Tiger (#1443)Victor Stinner2017-05-031-0/+9
* bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096)Serhiy Storchaka2017-04-191-1/+2