summaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-12639: msilib.Directory.start_component() fails if *keyfile* is not None ...Miss Islington (bot)2019-05-312-1/+10
* IDLE - Capitalize search dialogs' 'Close' button label. (GH-13691)Miss Islington (bot)2019-05-312-2/+3
* bpo-24564: shutil.copystat(): ignore EINVAL on os.setxattr() (GH-13369)Miss Islington (bot)2019-05-301-2/+3
* [3.7] bpo-36983: Fix typing.__all__ and add test for exported names (GH-13456...Anthony Sottile2019-05-292-0/+27
* bpo-26903: Limit ProcessPoolExecutor to 61 workers on Windows (GH-13132) (GH-...Miss Islington (bot)2019-05-282-0/+21
* bpo-22102: Fixes zip files with disks set to 0 (GH-5985)Miss Islington (bot)2019-05-281-1/+1
* bpo-26423: Fix possible overflow in wrap_lenfunc() (GH-13606)Miss Islington (bot)2019-05-281-0/+4
* bpo-37054, _pyio: Fix BytesIO and TextIOWrapper __del__() (GH-13601)Miss Islington (bot)2019-05-271-1/+10
* bpo-37039: IDLE - zoomheight fixes (GH-13576)Miss Islington (bot)2019-05-272-25/+13
* [3.7] bpo-37035: Don't log OSError (GH-13548) (#13594)Andrew Svetlov2019-05-277-16/+30
* BPO-27639: Correct return type for UserList slicing operation (#13203)Michael Blahay2019-05-262-1/+11
* bpo-37038: Make idlelib.run runnable; add test clause (GH-13560)Miss Islington (bot)2019-05-242-8/+24
* bpo-23395: Fix PyErr_SetInterrupt if the SIGINT signal is ignored or not hand...Miss Islington (bot)2019-05-241-0/+35
* bpo-37008: make mock_open handle able to honor next() (GH-13492)Miss Islington (bot)2019-05-233-0/+34
* bpo-27737: Allow whitespace only headers encoding (GH-13478) (#13517)Miss Islington (bot)2019-05-222-1/+4
* bpo-33110: Catch errors raised when running add_done_callback on already comp...Miss Islington (bot)2019-05-222-1/+20
* bpo-35907, CVE-2019-9948: urllib rejects local_file:// scheme (GH-13474) (GH-...Victor Stinner2019-05-222-1/+19
* [3.7] bpo-33482: fix codecs.StreamRecoder.writelines (GH-6779) (GH-13502)Jelle Zijlstra2019-05-222-1/+22
* bpo-36907: fix refcount bug in _PyStack_UnpackDict() (GH-13381) (GH-13493)Jeroen Demeyer2019-05-221-0/+17
* [3.7] bpo-36035: fix Path.rglob for broken links (GH-11988) (GH-13469)Miss Islington (bot)2019-05-212-5/+16
* bpo-36929: Modify io/re tests to allow for missing mod name (GH-13392)Miss Islington (bot)2019-05-212-29/+33
* bpo-34144: Fix of venv acvtivate.bat for win 10 (GH-8321)Miss Islington (bot)2019-05-211-1/+1
* bpo-36969: Make PDB args command display keyword only arguments (GH-13452)Miss Islington (bot)2019-05-202-7/+24
* bpo-35721: Close socket pair if Popen in _UnixSubprocessTransport fails (GH-1...Miss Islington (bot)2019-05-202-10/+25
* bpo-36958: In IDLE, print exit message (GH-13435)Miss Islington (bot)2019-05-203-6/+15
* bpo-29183: Fix double exceptions in wsgiref.handlers.BaseHandler (GH-12914)Miss Islington (bot)2019-05-192-1/+35
* bpo-27141: Fix collections.UserList and UserDict shallow copy. (GH-4094)Miss Islington (bot)2019-05-192-0/+38
* bpo-33524: Fix the folding of email header when max_line_length is 0 or None ...Miss Islington (bot)2019-05-173-2/+17
* Simplify SSLSocket / SSLObject doc string (GH-9972) (GH-13384)Miss Islington (bot)2019-05-171-16/+21
* bpo-1875: Raise SyntaxError in invalid blocks that will be optimised away (GH...Miss Islington (bot)2019-05-171-0/+14
* bpo-35545: Fix asyncio discarding IPv6 scopes (GH-11271)Miss Islington (bot)2019-05-172-3/+25
* bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375)Miss Islington (bot)2019-05-176-7/+20
* bpo-35926: Add support for OpenSSL 1.1.1b on Windows (GH-11779)Steve Dower2019-05-162-4/+19
* Fix typos in documentation. Patch by tirkarthi. (GH-13354)Miss Islington (bot)2019-05-151-6/+6
* bpo-36015: Handle StreamHandler representaton of stream with an integer name ...Miss Islington (bot)2019-05-152-0/+10
* Revert "bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transpor...Victor Stinner2019-05-143-45/+8
* bpo-33529, email: Fix infinite loop in email header encoding (GH-12020) (GH-1...Miss Islington (bot)2019-05-143-14/+25
* bpo-36915: regrtest always remove tempdir of worker processes (GH-13312)Miss Islington (bot)2019-05-142-44/+66
* bpo-36719: Fix regrtest MultiprocessThread (GH-13301) (GH-13303)Miss Islington (bot)2019-05-141-4/+55
* bpo-36845: validate integer network prefix when constructing IP networks (GH-...Miss Islington (bot)2019-05-142-0/+20
* bpo-24538: Fix bug in shutil involving the copying of xattrs to read-only fil...Miss Islington (bot)2019-05-142-1/+11
* bpo-34424: Handle different policy.linesep lengths correctly. (GH-8803)Miss Islington (bot)2019-05-132-1/+23
* bpo-36719: regrtest -jN no longer stops on crash (GH-13231)Miss Islington (bot)2019-05-134-18/+46
* [3.7] bpo-36807: When saving a file in IDLE, call flush and fsync (GH-13102) ...Miss Islington (bot)2019-05-131-0/+2
* bpo-36903: Fix ResourceWarning in test_logging (GH-13283) (GH-13285)Miss Islington (bot)2019-05-131-0/+1
* [3.7] bpo-36816: Update the self-signed.pythontest.net cert (GH-13192) (GH-13...Gregory P. Smith2019-05-081-14/+32
* bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transport (GH-13...Miss Islington (bot)2019-05-073-8/+45
* [3.7] bpo-36533: Reinit logging.Handler locks on fork(). (GH-12704) (GH-13170)Gregory P. Smith2019-05-072-40/+52
* bpo-35125: remove inner callback on outer cancellation in asyncio shield (GH-...Miss Islington (bot)2019-05-072-3/+18
* bpo-31922: Do not connect UDP sockets when broadcast is allowed (GH-423)Miss Islington (bot)2019-05-074-7/+31