summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* bpo-35766 follow-up: Kill half-support for FunctionType in PyAST_obj2modfix-req-typeGuido van Rossum2019-01-312-6/+4
* 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-291-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-281-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
* bpo-35713: Rework Python initialization (GH-11647)Victor Stinner2019-01-229-272/+290
* bpo-35720: Fixing a memory leak in pymain_parse_cmdline_impl() (GH-11528)Lucas Cimon2019-01-222-0/+2
* bpo-33416: Add end positions to Python AST (GH-11605)Ivan Levkivskyi2019-01-2219-395/+1406
* bpo-35758: Fix building on ARM + MSVC (gh-11531)Minmin Gong2019-01-213-2/+5
* bpo-35782: Fix error message in randrange (GH-11620)Kumar Akshay2019-01-211-1/+1
* bpo-35794: Catch PermissionError in test_no_such_executable (GH-11635)Pablo Galindo2019-01-211-1/+3
* bpo-35772: Fix test_tarfile on ppc64 (GH-11606)Victor Stinner2019-01-213-2/+15
* bpo-20239: Allow repeated deletion of unittest.mock.Mock attributes (#11057)Pablo Galindo2019-01-213-4/+32
* Add information about DeprecationWarning for invalid escaped characters in th...Pablo Galindo2019-01-201-1/+4
* bpo-35699: fix distuils cannot detect Build Tools 2017 anymore (GH-11495)Marc Schlaich2019-01-202-0/+2
* bpo-35770: Fix off-by-1 error. (#11618)Terry Jan Reedy2019-01-181-1/+1
* bpo-35733: Make isinstance(ast.Constant(boolean), ast.Num) be false. (GH-11547)Anthony Sottile2019-01-183-1/+13
* bpo-35770: IDLE macosx deletes Options => Configure IDLE. (GH-11614)Terry Jan Reedy2019-01-183-1/+9
* bpo-21257: document http.client.parse_headers (GH-11443)Ashwin Ramaswami2019-01-182-0/+20
* bpo-35045: Accept TLSv1 default in min max test (GH-11510)Christian Heimes2019-01-182-2/+7