summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* Fix the ImportWarning regarding __spec__ and __package__ being None (GH-16003)Miss Islington (bot)2019-09-131-3/+4
* bpo-37785: Fix xgettext warning in argparse (GH-15161)Miss Islington (bot)2019-09-132-2/+4
* bpo-38133: Allow py.exe launcher to locate installations from the Microsoft S...Miss Islington (bot)2019-09-122-101/+211
* Emphasize the need to always call PySequence_Fast. (GH-11140)Miss Islington (bot)2019-09-121-7/+14
* closes bpo-37803: pdb: fix handling of options (--help / --version) (GH-15193)Miss Islington (bot)2019-09-122-1/+2
* bpo-37908: Add an example of ArgumentParser.exit() (GH-15455)Miss Islington (bot)2019-09-121-1/+8
* [3.8] bpo-38121: Sync importlib.metadata with 0.22 backport (GH-15993) (GH-16...Jason R. Coombs2019-09-124-1084/+979
* bpo-38096: Complete the "structseq" and "named tuple" cleanup (GH-16010) (GH...Miss Islington (bot)2019-09-122-3/+9
* bpo-37935: Added tests for os.walk(), glob.iglob() and Path.glob() (GH-15956)...Miss Islington (bot)2019-09-123-0/+59
* [3.8] bpo-38137: Re-add OpenSSL 1.0.2 compat (GH-16051) (GH-16057)Stéphane Wirtel2019-09-121-0/+6
* bpo-37488 : Document a warning for datetime.utcnow() and utcfromtimestamp() (...Miss Islington (bot)2019-09-122-16/+35
* bpo-21872: fix lzma library decompresses data incompletely (GH-14048)Miss Islington (bot)2019-09-123-6/+188
* Overhaul datetime documentation (GH-13410)Miss Islington (bot)2019-09-122-476/+731
* bpo-36991: Fix incorrect exception escaping ZipFile.extract() (GH-13632)Miss Islington (bot)2019-09-123-0/+14
* bpo-38132: Check EVP_DigestUpdate for error (GH-16041)Miss Islington (bot)2019-09-121-6/+16
* bpo-37363: Document internal audit events (GH-14663)Miss Islington (bot)2019-09-121-1/+6
* bpo-38132: Simplify _hashopenssl code (GH-16023) (#16040)Miss Islington (bot)2019-09-124-122/+391
* bpo-36373: Deprecate explicit loop in task and subprocess API (GH-16033)Miss Islington (bot)2019-09-127-101/+178
* bpo-26868: Fix example usage of PyModule_AddObject. (GH-15725)Miss Islington (bot)2019-09-129-13/+74
* bpo-35325: Doc: imp.find_module() return value documentation discrepancy (GH-...Miss Islington (bot)2019-09-121-6/+5
* bpo-38134: Remove PKBDF2_HMAC_fast from _hashopenssl (GH-16028)Miss Islington (bot)2019-09-123-123/+3
* bpo-35685: Add examples of unittest.mock.patch.dict usage (GH-11456)Miss Islington (bot)2019-09-121-4/+27
* bpo-36675: Remove obsolete code. (GH-16024)Miss Islington (bot)2019-09-122-34/+0
* [3.8] bpo-32008: Prefer client or TLSv1_2 in examples (GH-5797) (GH-16027)Stéphane Wirtel2019-09-121-8/+14
* bpo-38110: Use fdwalk for os.closerange() when available. (GH-15224)Miss Islington (bot)2019-09-125-2/+32
* bpo-37972: unittest.mock._Call now passes on __getitem__ to the __getattr__ c...Miss Islington (bot)2019-09-123-0/+31
* closes bpo-37405: Make socket.getsockname() always return a tuple for AF_CAN....Miss Islington (bot)2019-09-123-2/+6
* bpo-38008: Move builtin protocol whitelist to mapping instead of list (GH-15647)Miss Islington (bot)2019-09-123-5/+20
* bpo-13927: time.ctime and time.asctime return string explantion (GH-11303)Miss Islington (bot)2019-09-121-7/+15
* closes bpo-38127: _ctypes: PyObject_IsSubclass() should be checked for failur...Miss Islington (bot)2019-09-121-1/+5
* [3.8] bpo-37879: Suppress subtype_dealloc decref when base type is a C heap t...Petr Viktorin2019-09-124-10/+319
* Doc: Update pickle.rst (GH-14128) (GH-16014)Miss Islington (bot)2019-09-121-17/+19
* bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895) (GH...Paul Ganssle2019-09-128-37/+40
* closes bpo-38124: Fix bounds check in PyState_AddModule. (GH-16007)Miss Islington (bot)2019-09-122-8/+8
* Correct typo in min version test (GH-16001)Miss Islington (bot)2019-09-111-1/+1
* bpo-36270: Doc: add link to traceback object reference (GH-13119)Miss Islington (bot)2019-09-111-1/+1
* bpo-34001: Fix test_ssl with LibreSSL (GH-13783) (#15997)Miss Islington (bot)2019-09-112-1/+4
* Improve clarity of try-return-finally-return (GH-15677) (GH-15981)Miss Islington (bot)2019-09-112-9/+23
* [3.8] bpo-37698: Update doc of PyBuffer_ToContiguous (GH-14992) (GH-15999)Stéphane Wirtel2019-09-111-2/+2
* Doc: recursive glob ** follows symlinks to directories (GH-12918)Miss Islington (bot)2019-09-111-2/+3
* bpo-37750: Add doc of PyBuffer_FromContiguous (GH-15988) (GH-15990)Miss Islington (bot)2019-09-111-0/+7
* bpo-38117: Test with OpenSSL 1.1.1d (GH-15983)Miss Islington (bot)2019-09-115-10/+10
* bpo-36528: Remove duplicate re tests. (GH-2689)Miss Islington (bot)2019-09-111-106/+0
* Doc: Fix missing negation. (GH-14640)Miss Islington (bot)2019-09-111-2/+2
* bpo-36260: Add pitfalls to zipfile module documentation (GH-13378) (GH-15976)Miss Islington (bot)2019-09-112-0/+41
* bpo-38114: Do not include pip.ini in Nuget package (GH-15964)Miss Islington (bot)2019-09-113-5/+9
* bpo-33166: Change os.cpu_count to return active (real) processors (GH-15949)Miss Islington (bot)2019-09-112-17/+5
* bpo-37885: venv: Don't produce unbound variable warning on deactivate (GH-15973)Miss Islington (bot)2019-09-113-1/+22
* bpo-36182: Update pathlib.Path.write_text() docs (GH-12161) (GH-15977)Miss Islington (bot)2019-09-111-0/+3
* bpo-36634: Fixes activate.bat when existing values contain double quotes (GH-...Miss Islington (bot)2019-09-112-25/+15