summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Merge tag 'v3.8.0a1'Łukasz Langa2019-02-041-827/+1128
|\
| * [pydoc] Regenerate topics for v3.8.0a1Łukasz Langa2019-02-031-827/+1128
* | bpo-35872 and bpo-35873: Clears __PYVENV_LAUNCHER__ variable (GH-11745)Steve Dower2019-02-045-23/+31
* | bpo-35692: pathlib no longer raises when checking file and directory existenc...Steve Dower2019-02-041-9/+18
|/
* bpo-29734: nt._getfinalpathname handle leak (GH-740)Mark Becwar2019-02-021-0/+56
* bpo-35845: Add order={'C', 'F', 'A'} parameter to memoryview.tobytes(). (#11730)Stefan Krah2019-02-021-0/+15
* bpo-1104: msilib.SummaryInfo.GetProperty() truncates the string by one charac...Tzu-ping Chung2019-02-021-2/+25
* bpo-35813: Added shared_memory submodule of multiprocessing. (#11664)Davin Potts2019-02-021-0/+573
* 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-011-0/+1
* 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-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-011-0/+16
* Consistently move the misses update to just before the user function call (GH...Raymond Hettinger2019-01-311-3/+3
* bpo-35766: Merge typed_ast back into CPython (GH-11645)Guido van Rossum2019-01-316-73/+380
* bpo-35864: Replace OrderedDict with regular dict in namedtuple() (#11708)Raymond Hettinger2019-01-311-1/+3
* bpo-34003: Use dict instead of OrderedDict in csv.DictReader (GH-8014)Michael Selik2019-01-311-2/+1
* bpo-35854: Fix EnvBuilder and --symlinks in venv on Windows (GH-11700)Steve Dower2019-01-302-18/+44
* subprocess: close pipes/fds by using ExitStack (GH-11686)Giampaolo Rodola2019-01-291-17/+18
* Fast path for int inputs to math.dist() and math.hypot() (GH-11692)Raymond Hettinger2019-01-281-1/+10
* 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-262-5/+35
* bpo-35797: Fix default executable used by the multiprocessing module (GH-11676)Steve Dower2019-01-252-1/+21
* bpo-35814: Allow same r.h.s. in annotated assignments as in normal ones (GH-1...Ivan Levkivskyi2019-01-252-1/+10
* bpo-35224: PEP 572 Implementation (#10497)Emily Morehouse2019-01-247-49/+506
* bpo-35717: Fix KeyError exception raised when using enums and compile (GH-11523)Rémi Lapeyre2019-01-242-1/+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-231-28/+64
* bpo-35726: Prevented QueueHandler formatting from affecting other handlers (G...Manjusaka2019-01-231-0/+3
* bpo-35683: Improve Azure Pipelines steps (GH-11493)Steve Dower2019-01-223-2/+9
* bpo-33416: Add end positions to Python AST (GH-11605)Ivan Levkivskyi2019-01-224-31/+431
* 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-212-2/+9
* bpo-20239: Allow repeated deletion of unittest.mock.Mock attributes (#11057)Pablo Galindo2019-01-212-4/+30
* bpo-35699: fix distuils cannot detect Build Tools 2017 anymore (GH-11495)Marc Schlaich2019-01-201-0/+1
* 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-182-1/+11
* bpo-35770: IDLE macosx deletes Options => Configure IDLE. (GH-11614)Terry Jan Reedy2019-01-182-1/+6
* bpo-35045: Accept TLSv1 default in min max test (GH-11510)Christian Heimes2019-01-181-2/+5
* bpo-35283: Update the docstring of threading.Thread.join method (GH-11596)Dong-hee Na2019-01-181-1/+1
* bpo-35769: Change IDLE's name for new files from 'Untitled' to 'untitled' (GH...Terry Jan Reedy2019-01-182-2/+4
* bpo-34850: Emit a warning for "is" and "is not" with a literal. (GH-9642)Serhiy Storchaka2019-01-182-11/+36
* bpo-35730: IDLE - test squeezer reload() by checking load_font() (GH-11585)Tal Einat2019-01-181-7/+3
* bpo-34161: Update idlelib/NEWS.txt to 2019 Jan 17 (GH-11597)Terry Jan Reedy2019-01-171-0/+15
* bpo-33687: Fix call to os.chmod() in uu.decode() (GH-7282)Timo Furrer2019-01-172-4/+20
* bpo-35701: Added __weakref__ slot to uuid.UUID (GH-11570)David H2019-01-172-1/+7
* bpo-35283: Add deprecation warning for Thread.isAlive (GH-11454)Dong-hee Na2019-01-173-4/+13
* Revert "bpo-35537: subprocess can now use os.posix_spawnp (GH-11579)" (GH-11582)Victor Stinner2019-01-162-12/+4