summaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-33855: Minimally test all IDLE modules. (GH-7689)Terry Jan Reedy2018-06-1533-106/+418
* Revert "bpo-32962: Fix test_gdb failure in debug build with -mcet -fcf-protec...Victor Stinner2018-06-151-9/+2
* bpo-32962: Fix test_gdb failure in debug build with -mcet -fcf-protection -O0...Marcel Plch2018-06-151-2/+9
* bpo-29456: Fix bugs in unicodedata.normalize: u1176, u11a7 and u11c3 (GH-1958)Wonsup Yoon2018-06-151-0/+13
* bpo-33851: Fix ast.get_docstring() for a node that lacks a docstring. (GH-7682)Serhiy Storchaka2018-06-152-2/+33
* bpo-33718: regrtest: use format_duration() to display failed tests (GH-7686)Victor Stinner2018-06-143-10/+44
* bpo-19382: Adding test cases for module tabnanny (GH-851)Jaysinh Shukla2018-06-142-1/+344
* bpo-33615: Re-enable subinterpreter tests. (#7552)Eric Snow2018-06-131-5/+6
* bpo-33671: efficient zero-copy for shutil.copy* functions (Linux, OSX and Win...Giampaolo Rodola2018-06-122-14/+437
* bpo-32108: Don't clear configparser values if key is assigned to itself (GH-7...Cheryl Sabella2018-06-122-1/+8
* bpo-27397: Make email module properly handle invalid-length base64 strings (#...Tal Einat2018-06-125-18/+65
* bpo-33582: Remove duplicate space in inspect.formatargspec() deprecation warn...Zackery Spytz2018-06-111-1/+1
* bpo-31432: Revert unrelated code changes to _ssl.c and test_ssl (GH-7650)Ned Deily2018-06-111-3/+1
* bpo-31432: Clarify ssl CERT_NONE/OPTIONAL/REQUIRED docs. (GH-3530)Christian Heimes2018-06-111-1/+3
* bpo-33656: Mention color in idlelib/NEWS.txt entry. (#7646)Terry Jan Reedy2018-06-111-4/+5
* bpo-33582: Emit deprecation warning for `formatargspec` (GH-6994)Matthias Bussonnier2018-06-112-6/+20
* bpo-33656: Add enum name for argument of Windows call. (GH-7642)Terry Jan Reedy2018-06-111-1/+4
* bpo-33656: On Windows, add API call saying that tk scales for DPI (GH-7137)Terry Jan Reedy2018-06-113-3/+20
* pypi.python.org -> pypi.org (GH-7613)Ned Deily2018-06-111-1/+1
* bpo-30167: Prevent site.main() exception if PYTHONSTARTUP is set. (GH-6731)Steve Weber2018-06-101-2/+2
* bpo-33812: Corrected astimezone for naive datetimes. (GH-7578)Alexander Belopolsky2018-06-102-12/+22
* bpo-33610: Update IDLE Code Context doc entry (GH-7597)Terry Jan Reedy2018-06-101-202/+206
* bpo-33748: fix tests altering sys.path and sys.modules (GH-7433)Tal Einat2018-06-101-19/+20
* bpo-33770: improve base64 exception message for encoded inputs of invalid len...Tal Einat2018-06-101-0/+28
* bpo-33810 Remove unused code from datetime.py. (GH-7549)Alexander Belopolsky2018-06-081-11/+4
* Datetime test coverage (#7544)Alexander Belopolsky2018-06-081-3/+9
* bpo-30805: Avoid race condition with debug logging (GH-7545)Yury Selivanov2018-06-081-2/+4
* bpo-33375: Get filename for warnings from frame.f_code.co_filename (GH-6622)Thomas Kluyver2018-06-082-89/+11
* bpo-33802: Do not interpolate in ConfigParser while reading defaults (GH-7524)Ɓukasz Langa2018-06-082-2/+53
* bpo-11874: fix assertion failure in argparse metavar handling (GH-1826)wim glenn2018-06-082-10/+38
* bpo-33694: Fix typo in helper function name (GH-7522)Victor Stinner2018-06-084-9/+9
* bpo-33718: regrtest: use "xxx then yyy" result if re-run (GH-7521)Victor Stinner2018-06-082-7/+44
* Update idlelib/NEWS.txt to 2018 Jun 8 am. (GH-7517)Terry Jan Reedy2018-06-081-0/+27
* bpo-33768: IDLE: Clicking on code context line moves it to top of editor (GH-...Cheryl Sabella2018-06-082-0/+49
* bpo-33197: Add description property for _ParameterKind. (GH-7206)Dong-hee Na2018-06-071-6/+7
* bpo-33792: Add selector and proactor windows policies (GH-7487)Yury Selivanov2018-06-072-3/+39
* bpo-33786: Fix asynchronous generators to handle GeneratorExit in athrow() (G...Yury Selivanov2018-06-073-1/+79
* bpo-33615: Skip test__xxsubinterpreters (GH-7503)Victor Stinner2018-06-081-0/+2
* bpo-33694: Fix race condition in asyncio proactor (GH-7498)Victor Stinner2018-06-085-151/+84
* bpo-33796: Ignore ClassVar for dataclasses.replace(). (GH-7488)Eric V. Smith2018-06-072-86/+125
* bpo-30436: Add missing space in importlib.util.find_spec() error message (GH-...Zackery Spytz2018-06-071-1/+1
* bpo-33274: Compliance with DOM L1: return removed attribute (#7465)arikrupnik2018-06-072-1/+2
* update to Unicode 11.0.0 (closes bpo-33778) (GH-7439)Benjamin Peterson2018-06-061-2/+2
* bpo-32676, test_asyncio: Fix warning in test_error_in_call_soon() (GH-7462)Victor Stinner2018-06-071-1/+5
* bpo-33789, test_asyncio: Hide PendingDeprecationWarning (GH-7461)Victor Stinner2018-06-071-1/+2
* bpo-33789: test_asyncio: Fix ResourceWarning (GH-7460)Victor Stinner2018-06-072-2/+12
* bpo-28240: timeit: Update repeat() doc (GH-7419)Victor Stinner2018-06-061-2/+2
* bpo-33773: Fix test.support.fd_count() on Linux/FreBSD (GH-7421)Victor Stinner2018-06-062-8/+21
* test.support.SaveSignals: fix typo (GH-7448)Victor Stinner2018-06-061-1/+1
* bpo-31044, test_posix: Reenable makedev() tests on FreeBSD (#7449)Victor Stinner2018-06-061-5/+0