summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-37691: Let math.dist() accept sequences and iterables for coordinates (GH...Raymond Hettinger2019-07-271-2/+4
* bpo-37628: Fix IDLE config sample sizes (#14958)Tal Einat2019-07-274-51/+128
* bpo-17535: Increase line number horizontal padding by 2 pixels (GH-14959)Tal Einat2019-07-271-1/+1
* bpo-37664: Update regex for ignoring cache warning on some buildbots (GH-14960)Steve Dower2019-07-261-2/+3
* bpo-29446: tkinter 'import *' only imports what it should (GH-14864)Flavian Hautbois2019-07-2610-15/+50
* bpo-37502: handle default parameter for buffers argument of pickle.loads corr...Markus Mohrhard2019-07-251-0/+5
* closes bpo-37675: Use pkgutil.iter_modules to find fixers in a package rather...Benjamin Peterson2019-07-241-4/+4
* bpo-37664: Update bundled pip to 19.2.1 and setuptools to 41.0.1 (GH-14934)Pradyun Gedam2019-07-243-2/+2
* bpo-37399: Correctly attach tail text to the last element/comment/pi (GH-14856)Stefan Behnel2019-07-241-0/+60
* bpo-37667: Add regression test for regrtest. (GH-14929)Gregory P. Smith2019-07-241-0/+26
* Only setup PGO tests when --pgo is enabled. (GH-14927)Gregory P. Smith2019-07-241-2/+3
* bpo-29446: IDLE -- add explicit imports (GH-14919)Terry Jan Reedy2019-07-231-0/+2
* bpo-17535: IDLE editor line numbers (GH-14030)Tal Einat2019-07-2314-76/+862
* bpo-33610: validate non-negative integer inputs in IDLE's config (GH-14822)Tal Einat2019-07-231-7/+31
* bpo-36044: Reduce number of unit tests run for PGO build (GH-14702)Neil Schemenauer2019-07-223-1/+61
* bpo-21478: Record calls to parent when autospecced objects are used as child ...Xtreak2019-07-222-11/+53
* Fix typos in docs, comments and test assert messages (#14872)Min ho Kim2019-07-2112-15/+15
* Fix typo found by Min ho Kim (#14879)Terry Jan Reedy2019-07-211-1/+1
* Minor whitespace, indentation, and quoting changes to improve internal consis...Raymond Hettinger2019-07-211-53/+74
* bpo-37627: Initialize IDLE Custom Run dialog with previous entries (#14870)Ngalim Siregar2019-07-213-10/+19
* bpo-36324: Make internal attributes for statistics.NormalDist() private. (GH-...Raymond Hettinger2019-07-212-49/+55
* bpo-37476: Adding tests for asutf8 and asutf8andsize (GH-14531)Hai Shi2019-07-201-0/+28
* bpo-36546: Clean-up comments (GH-14857)Raymond Hettinger2019-07-191-9/+3
* bpo-33610: IDLE's code-context always shows current context immediately (GH-1...Tal Einat2019-07-182-7/+21
* bpo-34443: Use __qualname__ instead of __name__ in enum exception messages. (...Walter Dörwald2019-07-182-10/+11
* bpo-37552: Skip failing tests in strptime/strftime with UCRT version 17763.61...Paul Monson2019-07-183-1/+32
* bpo-36390: Gather IDLE Format menu functions into format.py (#14827)Terry Jan Reedy2019-07-185-114/+112
* bpo-34155: Dont parse domains containing @ (GH-13079)jpic2019-07-174-1/+36
* Fix IndexError when parsing unexpectedly ending quoted-string. (GH-14813)Abhilash Raj2019-07-172-1/+5
* bpo-37461: Fix infinite loop in parsing of specially crafted email headers (G...Abhilash Raj2019-07-172-0/+10
* bpo-36390: IDLE: Combine region formatting methods. (GH-12481)Cheryl Sabella2019-07-176-327/+587
* bpo-37530: simplify, optimize and clean up IDLE code context (GH-14675)Tal Einat2019-07-174-99/+137
* bpo-27452: IDLE: Cleanup config.py code (GH-14577)Cheryl Sabella2019-07-162-39/+9
* Fix infinite loop in email folding logic (GH-12732)Paul Ganssle2019-07-163-6/+32
* bpo-37500: Make sure dead code does not generate bytecode but also detect syn...Pablo Galindo2019-07-153-13/+110
* bpo-37593: Swap the positions of posonlyargs and args in the constructor of a...Pablo Galindo2019-07-142-16/+18
* bpo-37473: Don't import importlib ASAP in tests (GH-14661)Victor Stinner2019-07-143-15/+7
* Clarify that plistlib's load and dump functions take a binary file object (GH...Collin Styles2019-07-141-3/+3
* bpo-37553: SendfileUsingSendTest tests timeout too short for Windows ARM32 (G...Paul Monson2019-07-141-1/+2
* bpo-26967: fix flag grouping with allow_abbrev=False (GH-14316)Zac Hatfield-Dodds2019-07-142-1/+20
* bpo-37579: Improve equality behavior for pure Python datetime and time (GH-14...Xtreak2019-07-132-2/+22
* closes bpo-37347: Fix refcount problem in sqlite3. (GH-14268)gescheit2019-07-131-58/+13
* bpo-19696: Move threaded_import_hangers (GH-14655)Kyle Stanley2019-07-122-3/+3
* closes bpo-37566: Remove _realsocket from socket.py. (GH-14711)Hai Shi2019-07-121-2/+0
* bpo-37558: Shared memory tests are failing due to double slashes (GH-14703)Jakub Kulík2019-07-111-1/+1
* bpo-36390: simplify classifyws(), rename it and add unit tests (GH-14500)Tal Einat2019-07-112-23/+77
* bpo-26806: IDLE should run without docstrings (#14657)Terry Jan Reedy2019-07-092-8/+19
* bpo-37322: ssl test_pha_required_nocert() ignores expected SSLError (GH-14670)Victor Stinner2019-07-091-15/+18
* bpo-18374: fix tests to check the correct thing about line numbers (GH-14659)Carl Friedrich Bolz-Tereick2019-07-091-4/+4
* Revert "bpo-37322: Fix test_ssl.test_pha_required_nocert() ResourceWarning (G...Victor Stinner2019-07-091-1/+0