summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-33895: Relase GIL while calling functions that acquire Windows loader loc...Tony Roberts2019-02-028-6/+48
* bpo-1104: msilib.SummaryInfo.GetProperty() truncates the string by one charac...Tzu-ping Chung2019-02-023-12/+46
* bpo-33316: PyThread_release_lock always fails (GH-6541)native-api2019-02-022-2/+4
* bpo-26256: Document algorithm speed for the Decimal module. (#4808)Cheryl Sabella2019-02-021-0/+20
* bpo-35813: Added shared_memory submodule of multiprocessing. (#11664)Davin Potts2019-02-024-0/+1310
* bpo-35879: Fix type comment leaks (GH-11728)Guido van Rossum2019-02-012-3/+9
* bpo-35877: Add test for while loop named expression without parentheses (GH-1...Emily Morehouse2019-02-011-1/+7
* bpo-35877: Make parenthesis optional for named expression in while statement ...Xtreak2019-02-014-2/+5
* bpo-35864: fix namedtuple._asdict() docstring (GH-11720)Amador Pahim2019-02-011-1/+1
* bpo-35861: Fix SyntaxWarning in test_named_expressions.py (GH-11722)Joannah Nanjekye2019-02-011-1/+1
* bpo-35766 follow-up: Kill half-support for FunctionType in PyAST_obj2mod (#11...Guido van Rossum2019-02-012-6/+4
* bpo-35537: Fix function name in os.posix_spawnp() errors (GH-11719)Victor Stinner2019-02-011-11/+13
* bpo-35537: Skip test_start_new_session() of posix_spawn (GH-11718)Victor Stinner2019-02-011-0/+2
* bpo-35537: Add setsid parameter to os.posix_spawn() and os.posix_spawnp() (GH...Joannah Nanjekye2019-02-015-33/+84
* Speed-up argument parsing for common cases in deque.__init__()(GH-11717)Raymond Hettinger2019-02-011-3/+7
* Consistently move the misses update to just before the user function call (GH...Raymond Hettinger2019-01-312-6/+8
* bpo-35766: Merge typed_ast back into CPython (GH-11645)Guido van Rossum2019-01-3130-651/+2039
* doc: http: Fix enum name for status code 416 (GH-11689)Phil Jones2019-01-311-1/+1
* bpo-35864: Replace OrderedDict with regular dict in namedtuple() (#11708)Raymond Hettinger2019-01-314-2/+21
* bpo-33504: fix wrong "versionchanged" (GH-11712)Inada Naoki2019-01-311-4/+4
* bpo-34003: Use dict instead of OrderedDict in csv.DictReader (GH-8014)Michael Selik2019-01-313-8/+9
* bpo-35854: Fix EnvBuilder and --symlinks in venv on Windows (GH-11700)Steve Dower2019-01-305-27/+63
* Document differences between random.choices() and random.choice(). (GH-11703)Raymond Hettinger2019-01-301-0/+7
* bpo-35835: Add reference to Python 3.7 new breakpoint() function in pdb docum...João Matos2019-01-301-0/+4
* bpo-25592: Improve documentation of distutils data_files (GH-9767)jdemeyer2019-01-301-11/+14
* Move float conversion into a macro. Apply to fsum (GH-11698)Raymond Hettinger2019-01-301-49/+32
* subprocess: close pipes/fds by using ExitStack (GH-11686)Giampaolo Rodola2019-01-292-17/+22
* bpo-35847: RISC-V needs CTYPES_PASS_BY_REF_HACK (GH-11694)Andreas Schwab2019-01-292-1/+2
* Fast path for int inputs to math.dist() and math.hypot() (GH-11692)Raymond Hettinger2019-01-282-4/+34
* bpo-35701: Update doc for UUID weak referencing (GH-11621)David H2019-01-281-5/+0
* Fix typo: class declaration (GH-11678)nu_no2019-01-271-1/+1
* Clarify U-mode deprecation in open() (GH-11646)Nick Coghlan2019-01-271-1/+8
* Fix docstr/comment typos in _use_posix_spawn(). (GH-11684)Gregory P. Smith2019-01-261-11/+10
* bpo-35780: Fix errors in lru_cache() C code (GH-11623)Raymond Hettinger2019-01-264-89/+234
* bpo-35811: Avoid propagating venv settings when launching via py.exe (GH-11677)Steve Dower2019-01-252-0/+12
* bpo-35797: Fix default executable used by the multiprocessing module (GH-11676)Steve Dower2019-01-253-1/+22
* bpo-34134: Advise to use imap or imap_unordered when handling long iterables....Windson yang2019-01-251-1/+5
* bpo-35814: Allow same r.h.s. in annotated assignments as in normal ones (GH-1...Ivan Levkivskyi2019-01-256-6/+23
* bpo-35224: Add support for NamedExpr to unparse.py (GH-11670)Victor Stinner2019-01-251-0/+7
* bpo-35224: PEP 572 Implementation (#10497)Emily Morehouse2019-01-2427-655/+1472
* bpo-35717: Fix KeyError exception raised when using enums and compile (GH-11523)Rémi Lapeyre2019-01-244-1/+13
* bpo-35520: Fix build with dtrace support on certain systems. (#11194)Jakub Kulík2019-01-243-6/+10
* bpo-35767: Fix unittest.loader to allow partials as test_functions (#11600)Jason Fried2019-01-232-1/+19
* bpo-35537: subprocess can use posix_spawn with pipes (GH-11575)Victor Stinner2019-01-232-30/+66
* bpo-35713: Reorganize sys module initialization (GH-11658)Victor Stinner2019-01-234-75/+96
* bpo-35781: Changed references to deprecated 'warn' method in logging document...yuji38kwmt2019-01-232-4/+4
* bpo-35722: Updated the documentation for the 'disable_existing_loggers' param...Géry Ogam2019-01-232-10/+10
* bpo-35726: Prevented QueueHandler formatting from affecting other handlers (G...Manjusaka2019-01-232-0/+4
* bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650)Victor Stinner2019-01-229-333/+325
* bpo-35683: Improve Azure Pipelines steps (GH-11493)Steve Dower2019-01-2213-166/+148