summaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-10496: distutils check_environ() handles getpwuid() error (GH-10931) (GH-...Victor Stinner2018-12-182-4/+47
* bpo-34279: regrtest consider that skipped tests are ran (GH-11132) (GH-11158)Victor Stinner2018-12-142-1/+14
* bpo-16039: CVE-2013-1752: Limit imaplib.IMAP4_SSL.readline() (GH-11120)Victor Stinner2018-12-122-17/+8
* bpo-11617: Try to strengthen test_httpservers (GH-11121)Victor Stinner2018-12-111-4/+4
* bpo-35052: Fix handler on xml.dom.minidom.cloneNode() (GH-11061) (GH-11068)Victor Stinner2018-12-102-5/+56
* [2.7] bpo-33023: Fix NotImplemented to NotImplementedError. (GH-10934). (GH-1...Serhiy Storchaka2018-12-072-2/+4
* [2.7] bpo-33709: test_ntpath and test_posixpath fail in Windows with ACP!=125...native-api2018-12-062-6/+8
* Revert "[2.7] bpo-34172: multiprocessing.Pool leaks resources after being del...Victor Stinner2018-12-062-44/+19
* [2.7] bpo-34052: Prevent SQLite functions from setting callbacks on exception...Serhiy Storchaka2018-12-061-19/+65
* [2.7] bpo-34738: Add directory entries in ZIP files created by distutils. (GH...Serhiy Storchaka2018-12-064-4/+20
* [2.7] bpo-35250: Correct argument name "num" -> "btn" in turtle docs. (GH-105...Serhiy Storchaka2018-12-051-4/+4
* bpo-10496: posixpath.expanduser() catchs pwd.getpwuid() error (GH-10919) (GH-...Victor Stinner2018-12-053-24/+97
* bpo-34185: Fix test module collision in test_bdb when ran as script. (GH-8537)Miss Islington (bot)2018-12-051-8/+8
* bpo-35411: Skip test_urllib2net FTP tests on Travis CI (GH-10907)Miss Islington (bot)2018-12-042-0/+13
* [2.7] bpo-16865: Support arrays >=2GB in ctypes. (GH-3006). (GH-7441)Serhiy Storchaka2018-12-041-0/+7
* bpo-26544: Make platform.libc_ver() less slow (GH-10868)Victor Stinner2018-12-031-1/+4
* Replace 1/0 with 1//0 in tests to avoid Python 3 warns (GH-10833)Victor Stinner2018-11-303-3/+3
* bpo-35347: Fix test_socket.NonBlockingTCPTests (GH-10791) (GH-10817)Victor Stinner2018-11-301-24/+41
* Fix DeprecationWarning in test_bytes (GH-10805)Victor Stinner2018-11-301-2/+2
* bpo-34021: Windows skips test_regrtest.test_env_changed() (GH-10804)Victor Stinner2018-11-291-0/+3
* bpo-34279, regrtest: Issue a warning if no tests have been executed (GH-10801)Victor Stinner2018-11-293-7/+127
* pythoninfo: log more environment variable (GH-10719) (GH-10774)Victor Stinner2018-11-281-4/+45
* [2.7] bpo-35021: Fix assertion failures in _datetimemodule.c. (GH-10039) (GH-...Serhiy Storchaka2018-11-201-35/+58
* Upgrade pip to 18.1 and setuptools to 40.6.2 (GH-10598)Miss Islington (bot)2018-11-194-2/+2
* closes bpo-35171: Fix test_TimeRE_recreation_timezone failure on some systems...Miss Islington (bot)2018-11-051-1/+1
* [2.7] bpo-35133: Fix mistakes when concatenate string literals on different l...Serhiy Storchaka2018-11-0513-20/+20
* bpo-35062: Fix parsing _io.IncrementalNewlineDecoder's *translate* argument. ...Miss Islington (bot)2018-10-311-0/+10
* bpo-34866: Add max_num_fields to cgi.FieldStorage (GH-9660) (GH-9969)matthewbelisle-wf2018-10-303-15/+109
* [2.7] Fix checking for bugfix Tcl version. (GH-10185). (GH-10188)Serhiy Storchaka2018-10-281-2/+2
* bpo-35017, socketserver: don't accept request after shutdown (GH-9952) (GH-10...Denis Ledoux2018-10-261-0/+3
* [2.7] bpo-34260, shutil: fix copy2 and copystat documentation (GH-8523) (GH-1...Zsolt Cserna2018-10-241-2/+11
* bpo-33899: Revert tokenize module adding an implicit final NEWLINE (GH-10072)Tal Einat2018-10-242-44/+12
* [2.7] bpo-34936: Fix TclError in tkinter.Spinbox.selection_element(). (GH-976...Serhiy Storchaka2018-10-212-4/+12
* bpo-31500: Default fonts now are scaled on HiDPI displays. (#10015)Terry Jan Reedy2018-10-201-0/+2
* [2.7] bpo-31500: IDLE: Scale default fonts on HiDPI displays. (GH-3639) (GH-6...Cheryl Sabella2018-10-203-0/+18
* bpo-34791: xml package obeys ignore env flags (GH-9544) (GH-9547)Miss Islington (bot)2018-10-202-2/+4
* [2.7] bpo-23420: Verify the value of '-s' when execute the CLI of cProfile (G...Stéphane Wirtel2018-10-172-3/+12
* [2.7] bpo-16965: 2to3 now rewrites execfile() to open with rb. (GH-8569) (GH-...Zackery Spytz2018-10-162-9/+10
* [2.7] bpo-34974: Do not replace unexpected errors in bytearray(). (GH-9852) (...Serhiy Storchaka2018-10-151-2/+16
* [2.7] Add new tests for bytes and bytearray constructors. (GH-9843) (#9866)Serhiy Storchaka2018-10-141-3/+56
* [2.7] bpo-22851: Fix a segfault when accessing generator.gi_frame.f_restricte...Zackery Spytz2018-10-131-0/+11
* bpo-32962: Fix test_gdb failure in debug build with -mcet -fcf-protection -O0...Victor Stinner2018-10-101-1/+37
* [2.7] bpo-34172: multiprocessing.Pool leaks resources after being deleted (GH...tzickel2018-10-032-19/+44
* [2.7] bpo-34162: Update 2.7 idlelib/NEWS.txt to 2018-9-24 (GH-9550)Terry Jan Reedy2018-09-241-2/+15
* [2.7] bpo-34610: Fixed iterator of multiprocessing.managers.DictProxy. (GH-91...Serhiy Storchaka2018-09-222-1/+27
* [2.7] bpo-34472: Add data descriptor signature to zipfile (GH-8871) (ПР-9407)Serhiy Storchaka2018-09-221-3/+5
* Fix pickletools doc for NEWFALSE. (GH-9432)Miss Islington (bot)2018-09-221-6/+2
* bpo-19756: Prevent test failures due to EADDRNOTAVAIL (GH-9446)Miss Islington (bot)2018-09-201-0/+3
* [2.7] bpo-34542: Update test certs and keys (GH-8997) (GH-9397)Christian Heimes2018-09-2013-511/+700
* [2.7] bpo-34603, ctypes/libffi_msvc: Fix returning structs from functions (GH...Vladimir Matveev2018-09-191-0/+18