summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-33812: Corrected astimezone for naive datetimes. (GH-7578)Alexander Belopolsky2018-06-105-14/+36
* bpo-33610: Update IDLE Code Context doc entry (GH-7597)Terry Jan Reedy2018-06-102-203/+208
* bpo-33820: Fix IDLE What's New typo (#7594)Terry Jan Reedy2018-06-101-1/+1
* bpo-33821: Update idlelib subsection of What's New 3.7 (#7590)Terry Jan Reedy2018-06-101-2/+10
* bpo-33820: Update idlelib subsection of What's New 3.6 (GH-7589)Terry Jan Reedy2018-06-101-0/+37
* Remove unneeded PyErr_Occurred() check in os_lseek_impl() (GH-7557)Zackery Spytz2018-06-101-3/+0
* 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-103-1/+41
* Fix spaces added after hyphens in news entries. (GH-7579)Serhiy Storchaka2018-06-105-7/+7
* Remove hyphens from phrase "picks up where it left off" (GH-7410)Andrés Delfino2018-06-101-3/+3
* Fix typo in object.__getnewargs__() documentation (GH-7554)Andrés Delfino2018-06-101-1/+1
* bpo-33766: Document that end of file or string is a newline (GH-7383)Ammar Askar2018-06-091-5/+6
* doc: Fix typo in asyncio-eventloop.rst (GH-7345)MarcoFalke2018-06-091-2/+2
* bpo-32493: Correct test for uuid_enc_be availability in configure.ac. (GH-751...Ned Deily2018-06-093-6/+4
* bpo-33738: Fix macros which contradict PEP 384 (GH-7477)Christian Tismer2018-06-098-0/+198
* bpo-33375: Fix GCC warning in Python/_warnings.c (GH-7556)Zackery Spytz2018-06-091-1/+0
* bpo-33409: Clarify PEP 538/540 relationship (GH-7534)Nick Coghlan2018-06-093-24/+106
* Fix indendation level of versionchanged directive in configparser.items() doc...Andrés Delfino2018-06-091-4/+4
* 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-082-2/+5
* bpo-33801: Remove non-ordered dict comment from plistlib doc (GH-7495)Andrés Delfino2018-06-081-3/+1
* bpo-33375: Get filename for warnings from frame.f_code.co_filename (GH-6622)Thomas Kluyver2018-06-084-155/+19
* bpo-33800: Fix default argument for parameter dict_type of ConfigParser/RawCo...Andrés Delfino2018-06-081-2/+9
* bpo-33197: Add versionadded tag to the documentation of ParameterKind (GH-7536)Dong-hee Na2018-06-082-0/+3
* bpo-33807: Add Python 3.7 buildbot link to '.github/CONTRIBUTING.rst' (GH-7532)Suriyaa ✌️️2018-06-081-0/+4
* bpo-33736: Improve the documentation of asyncio stream APIs (GH-7326)Elvis Pranskevichus2018-06-084-35/+75
* bpo-33798: Update csv document about dict order (GH-7490)Andrés Delfino2018-06-081-3/+1
* 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-083-10/+40
* 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
* bpo-33799: Remove non-ordered dicts comments from FAQAndrés Delfino2018-06-082-10/+1
* 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-083-0/+50
* bpo-33197: Add description property for _ParameterKind. (GH-7206)Dong-hee Na2018-06-083-6/+25
* bpo-33791: Update README for macOS users (GH-7471)atg70002018-06-081-0/+5
* bpo-33792: Add selector and proactor windows policies (GH-7487)Yury Selivanov2018-06-084-3/+45
* bpo-33786: Fix asynchronous generators to handle GeneratorExit in athrow() (G...Yury Selivanov2018-06-085-9/+87
* bpo-33803: Fix a crash in hamt.c (#7504)Yury Selivanov2018-06-082-0/+4
* bpo-33615: Skip test__xxsubinterpreters (GH-7503)Victor Stinner2018-06-081-0/+2
* bpo-33642 and bpo-33679: Revise and condense blurbs (GH-7500)Terry Jan Reedy2018-06-072-21/+5
* bpo-33694: Fix race condition in asyncio proactor (GH-7498)Victor Stinner2018-06-076-151/+86
* bpo-33609: small wording fixes to dict ordering docsNeil Schemenauer2018-06-071-5/+5
* bpo-33796: Ignore ClassVar for dataclasses.replace(). (GH-7488)Eric V. Smith2018-06-072-86/+125
* update 3.7 whatsnew entry about Unicode version (GH-7480)Benjamin Peterson2018-06-071-2/+2
* bpo-17909: Document that json.load can accept a binary IO (GH-7366)Anthony Sottile2018-06-071-3/+7
* bpo-29235: Update document for Profiler's context manager (GH-7331)Scott Sanderson2018-06-073-8/+7
* 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-073-1/+5