summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Python 3.8.4rc1v3.8.4rc1Ɓukasz Langa2020-06-3067-129/+648
* bpo-41004: Resolve hash collisions for IPv4Interface and IPv6Interface (GH-21...Miss Islington (bot)2020-06-293-2/+15
* bpo-41048: mimetypes should read the rule file using UTF-8, not the locale en...Miss Islington (bot)2020-06-294-1/+16
* Update ssl.rstMiss Islington (bot)2020-06-291-0/+3
* bpo-41123: Doc: PyLong_FromUnicode will be removed in 3.10 (GH-21205)Miss Islington (bot)2020-06-281-1/+1
* [3.8] bpo-41138: Fix trace CLI for non-UTF-8 files. (GH-21177) (GH-21200)Serhiy Storchaka2020-06-283-16/+28
* bpo-41144: Fix IDLE open module error (GH-21182)Miss Islington (bot)2020-06-274-7/+20
* [3.8] bpo-35975: Only use cf_feature_version if PyCF_ONLY_AST in cf_flags (#2...Guido van Rossum2020-06-275-3/+29
* [3.8] bpo-41132: Use pymalloc allocator in the f-string parser (GH-21173) (GH...Lysandros Nikolaou2020-06-271-7/+7
* bpo-41100: clarify NEWS item about macOS 11 support (GH-21174)Miss Islington (bot)2020-06-271-1/+7
* BPO-41100: Support macOS 11 when building (GH-21113)Miss Islington (bot)2020-06-253-2/+3
* [3.8] bpo-41009: fix requires_OS_version() class decorator (GH-20942) (GH-20948)Christian Heimes2020-06-252-19/+21
* bpo-41113: Fix test_warnings on non-Western locales. (GH-21143)Miss Islington (bot)2020-06-251-3/+3
* bpo-40204: Pin Sphinx version to 2.3.1 in ``Doc/Makefile``. (GH-21141) (GH-21...Ned Deily2020-06-252-1/+2
* bpo-35773: Fix test_bdb on non-UTF-8 locales. (GH-21136)Miss Islington (bot)2020-06-251-1/+1
* bpo-39580: add check for CLI installation on macOS (GH-20271)Miss Islington (bot)2020-06-252-1/+5
* Forward port macOS installer updates from 3.7 (GH-21132) (GH-21137)Ned Deily2020-06-255-263/+188
* bpo-41074: Fix support of non-ASCII names and SQL in msilib. (GH-21126)Miss Islington (bot)2020-06-253-8/+21
* bpo-40773: Fix rendering for 'retval' on the pdb page (GH-21081)Miss Islington (bot)2020-06-241-0/+1
* bpo-41094: Additional fix for PYTHONSTARTUP. (GH-21119)Miss Islington (bot)2020-06-242-11/+45
* bpo-41094: Fix decoding errors with audit when open files. (GH-21095)Miss Islington (bot)2020-06-245-12/+33
* bpo-41038: Fix non-ASCII string corruption in Win32 resource files (GH-20985)Miss Islington (bot)2020-06-241-0/+1
* bpo-41005: Fixed perrmission error (GH-20936) (GH-21052)Miss Islington (bot)2020-06-242-1/+2
* Fix typo in dataclasses module (GH-21109) (#21111)Miss Islington (bot)2020-06-241-1/+1
* bpo-40707: Document that Popen.communicate sets the returncode attribute (GH-...Miss Islington (bot)2020-06-231-4/+5
* [3.8] bpo-31938: Fix default-value signatures of several functions in the sel...Anthony Sottile2020-06-233-13/+18
* bpo-39699: Remove accidentally committed test change (GH-21089)Ammar Askar2020-06-231-2/+0
* bpo-41085: Fix array.array.index() on 64-bit Windows (GH-21071)Miss Islington (bot)2020-06-232-1/+3
* Improve asyncio.loop.call_soon() documentation (GH-20883)Miss Islington (bot)2020-06-223-3/+7
* bpo-41068: Fix read after write in zipfile for non-ASCII files names. (GH-21040)Miss Islington (bot)2020-06-223-1/+8
* bpo-40824: Do not mask errors in __iter__ in "in" and the operator module. (G...Miss Islington (bot)2020-06-224-1/+21
* bpo-41056: Fix reference to deallocated stack in pathconfig (Coverity) (GH-21...Miss Islington (bot)2020-06-222-1/+2
* bpo-41058: Use source file encoding in pdb.find_function(). (GH-21010)Miss Islington (bot)2020-06-213-14/+42
* bpo-41056: Fix a NULL pointer dereference on MemoryError within the ssl modul...Miss Islington (bot)2020-06-212-6/+7
* Add link to .pypirc specification (GH-20680) (#21019)Miss Islington (bot)2020-06-201-0/+3
* bpo-41040: Fix test_modulefinder. (GH-20991)Miss Islington (bot)2020-06-191-1/+2
* bpo-38377: Fix skip_if_broken_multiprocessing_synchronize() on macOS (GH-20984)Miss Islington (bot)2020-06-191-8/+9
* Improve readability of `formataddr` docstring (GH-20963)Miss Islington (bot)2020-06-191-1/+1
* bpo-38377: Add support.skip_if_broken_multiprocessing_synchronize() (GH-20944...Victor Stinner2020-06-188-12/+41
* bpo-41003: Fix test_copyreg when numpy is installed (GH-20935) (GH-20945) (GH...Victor Stinner2020-06-174-13/+29
* bpo-40993: Don't run Travis CI coverage on PRs (GH-20916)Miss Islington (bot)2020-06-161-0/+12
* bpo-38488: Upgrade bundled versions of pip & setuptools (GH-20491) (GH-20900)Ned Deily2020-06-156-7/+8
* bpo-40448: ensurepip: Do not use cache (GH-19812)Miss Islington (bot)2020-06-154-9/+12
* bpo-34226: fix cgi.parse_multipart without content_length (GH-8530)Miss Islington (bot)2020-06-153-2/+21
* bpo-40855: Fix ignored mu and xbar parameters (GH-20835) (GH-20863)Miss Islington (bot)2020-06-133-2/+18
* [3.8] bpo-37674: Tweak imp module deprecation note in the docs (GH-20480) (GH...Miss Islington (bot)2020-06-131-1/+1
* bpo-40957: Fix refleak in _Py_fopen_obj() (GH-20827)Miss Islington (bot)2020-06-132-0/+2
* bpo-40834: Fix truncate when sending str object with channel (GH-20555)Miss Islington (bot)2020-06-133-1/+5
* bpo-40164: Update Windows OpenSSL to 1.1.1g (GH-20834)Steve Dower2020-06-125-8/+9
* bpo-40964: disable remote IMAP tests (GH-20836)Christian Heimes2020-06-122-0/+5