summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Python 3.8.0b4v3.8.0b4Łukasz Langa2019-08-2977-225/+845
* [3.8] bpo-37834: Prevent shutil.rmtree exception (GH-15602) (#15603)Łukasz Langa2019-08-292-1/+3
* [3.8] bpo-37034: Display argument name on errors with keyword arguments with ...Serhiy Storchaka2019-08-2962-553/+623
* bpo-37979: Add alternative to fromisoformat in documentation (GH-15596)Miss Islington (bot)2019-08-292-1/+5
* bpo-37947: Avoid double-decrement in symtable recursion counting (GH-15593)Miss Islington (bot)2019-08-291-4/+14
* bpo-36743: __get__ is sometimes called without the owner argument (GH-12992) ...Miss Islington (bot)2019-08-295-13/+24
* bpo-16468: Clarify which objects can be passed to "choices" in argparse (GH-1...Miss Islington (bot)2019-08-291-3/+2
* bpo-37960: Silence only necessary errors in repr() of buffered and text strea...Miss Islington (bot)2019-08-294-22/+22
* bpo-23674: Clarify ambiguities in super() docs (GH-15564) (GH-15586)Miss Islington (bot)2019-08-291-3/+10
* bpo-37372: Fix error unpickling datetime.time objects from Python 2 with seco...Miss Islington (bot)2019-08-294-10/+22
* [3.8] bpo-37950: Fix ast.dump() when call with incompletely initialized node....Serhiy Storchaka2019-08-294-19/+59
* bpo-36871: Ensure method signature is used when asserting mock calls to a met...Miss Islington (bot)2019-08-293-1/+86
* bpo-35946: Improve assert_called_with documentation (GH-11796)Miss Islington (bot)2019-08-282-3/+3
* bpo-25777: Wording describes a lookup, not a call (GH-15573) (GH-15576)Miss Islington (bot)2019-08-281-1/+1
* bpo-36167: fix an incorrect capitalization (GH-14482)Miss Islington (bot)2019-08-281-1/+1
* bpo-18049: Define THREAD_STACK_SIZE for AIX to pass default recursion limit t...Miss Islington (bot)2019-08-282-0/+7
* bpo-36511: Fix failures in Windows ARM32 buildbot (GH-15181)Miss Islington (bot)2019-08-281-0/+1
* bpo-34775: Return NotImplemented in PurePath division. (GH-9509) (GH-15172)Miss Islington (bot)2019-08-293-2/+52
* bpo-18378: Recognize "UTF-8" as a valid name in locale._parse_localename (GH-...Miss Islington (bot)2019-08-283-0/+41
* [3.8] bpo-37482: Fix email address name with encoded words and special chars ...bsiem2019-08-293-0/+28
* closes bpo-37965: Fix compiler warning of distutils CCompiler.test_function. ...Miss Islington (bot)2019-08-282-1/+3
* bpo-36582: Make collections.UserString.encode() return bytes, not str (GH-131...Miss Islington (bot)2019-08-274-6/+20
* bpo-37951: Lift subprocess's fork() restriction (GH-15544)Miss Islington (bot)2019-08-274-2/+19
* bpo-37936: Remove some .gitignore rules that were intended locally. (GH-15542)Miss Islington (bot)2019-08-271-7/+1
* Fix unused variable and signed/unsigned warnings (GH-15537) (GH-15551)Miss Islington (bot)2019-08-273-3/+9
* bpo-36205: Fix the rusage implementation of time.process_time() (GH-15538)Miss Islington (bot)2019-08-262-1/+2
* bpo-36763: Make Py_BytesMain() public (GH-15532)Miss Islington (bot)2019-08-262-2/+2
* Fix an invalid assertEqual() call in test_descr.py (GH-15318)Miss Islington (bot)2019-08-261-5/+1
* bpo-37925: Mention --embed in python-config usage (GH-15458)Miss Islington (bot)2019-08-261-1/+1
* bpo-37664: Update ensurepip bundled wheels, again (GH-15483)Steve Dower2019-08-264-2/+3
* bpo-37798: Minor code formatting and comment clean-ups. (GH-15526) (GH-15527)Miss Islington (bot)2019-08-261-13/+22
* bpo-37055: fix warnings in _blake2 module (GH-14646)Miss Islington (bot)2019-08-263-19/+0
* Fix typo: Pyssize_t => Py_ssize_t (GH-15411)Miss Islington (bot)2019-08-261-1/+1
* bpo-37954: Fix reference leak in the symtable (GH-15514)Miss Islington (bot)2019-08-261-1/+3
* Remove leftovers from the times when long long wasn't required (GH-15501)Miss Islington (bot)2019-08-262-4/+4
* [3.8] bpo-37947: Adjust correctly the recursion level in symtable for named e...Pablo Galindo2019-08-262-1/+5
* bpo-34679: Restore instantiation Windows IOCP event loop from non-main thread...Miss Islington (bot)2019-08-263-1/+24
* [3.8] bpo-36917: Add default implementation of ast.NodeVisitor.visit_Constant...Miss Islington (bot)2019-08-265-0/+99
* bpo-37805: Add tests for json.dump(..., skipkeys=True) (GH-15489)Miss Islington (bot)2019-08-262-0/+11
* bpo-15542: Documentation incorrectly suggests __init__ called after direct _...Miss Islington (bot)2019-08-261-4/+4
* bpo-37824: Properly handle user input warnings in IDLE shell. (GH-15500)Miss Islington (bot)2019-08-263-14/+11
* Doc: Keep the venv/* exclude pattern. (GH-15229)Miss Islington (bot)2019-08-251-2/+4
* [3.8] bpo-37757: Disallow PEP 572 cases that expose implementation details (G...Nick Coghlan2019-08-2610-76/+191
* bpo-37905: Improve docs for NormalDist (GH-15486) (GH-15487)Miss Islington (bot)2019-08-251-20/+7
* bpo-37929: IDLE: avoid Squeezer-related config dialog crashes (GH-15452)Miss Islington (bot)2019-08-244-50/+27
* [3.8] bpo-37942: Improve argument clinic float converter (GH-15470) (GH-15480)Raymond Hettinger2019-08-2410-112/+317
* Fix typo and rearrange words in IDLE news item (GH-15471)Miss Islington (bot)2019-08-241-1/+1
* [3.8] Clarify argument types in datetime docs. (GH-15459) (GH-15472)Miss Islington (bot)2019-08-241-3/+3
* bpo-14112: Allow beginners to explore shallowness in greater depth ;-) (GH-15...Miss Islington (bot)2019-08-242-1/+3
* bpo-37798: Test both Python and C versions in test_statistics.py (GH-15453) (...Miss Islington (bot)2019-08-242-33/+75