summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* bpo-34871: Fix two typos in test_inspect.py (GH-9698)Chih-Hsuan Yen2018-10-041-2/+2
* bpo-34872: Fix self-cancellation in C implementation of asyncio.Task (GH-9679)Elvis Pranskevichus2018-10-031-0/+36
* bpo-34172: multiprocessing.Pool leaks resources after being deleted (GH-8450)tzickel2018-10-021-0/+6
* bpo-34728: Fix asyncio tests to run under "-Werror" (GH-9661)Yury Selivanov2018-10-0214-206/+192
* closes bpo-34868: Improve error message with '_' is combined with an invalid ...Benjamin Peterson2018-10-021-0/+3
* bpo-30167: Add test for module.__cached__ is None (GH-7617)INADA Naoki2018-10-011-0/+11
* bpo-34854: Fix compiling string annotations containing lambdas. (GH-9645)Serhiy Storchaka2018-09-301-1/+2
* bpo-34849: Don't log wating for selector.select in asyncio loop iteration (GH...Andrew Svetlov2018-09-301-25/+0
* bpo-31370: Remove references to threadless builds (#8805)Zackery Spytz2018-09-291-3/+0
* bpo-34736: improve error message for invalid length b64decode inputs (GH-9563)Tal Einat2018-09-281-1/+5
* bpo-34248: Add filename to error raised in {gnu,ndbm}.open() (GH-8590)Zsolt Cserna2018-09-272-0/+13
* bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445)Serhiy Storchaka2018-09-274-63/+170
* Fix tests in test_socket to use correctly CMSG_LEN (GH-9594)Pablo Galindo2018-09-271-2/+3
* bpo-31425: Expose AF_QIPCRTR in socket module (GH-3706)Bjorn Andersson2018-09-261-0/+41
* bpo-34320: Fix dict(o) didn't copy order of dict subclass (GH-8624)INADA Naoki2018-09-263-0/+56
* bpo-34334: Don't log traceback twice in QueueHandler (GH-9537)Cheryl Sabella2018-09-251-0/+15
* bpo-5950: Support reading zips with comments in zipimport (#9548)Zackery Spytz2018-09-251-0/+15
* bpo-33937: Catch ENOMEM error in test_socket (#9557)Victor Stinner2018-09-251-2/+13
* bpo-34687: Make asynico use ProactorEventLoop by default (GH-9538)Victor Stinner2018-09-252-2/+3
* bpo-32557: allow shutil.disk_usage to take a file path on Windows also (GH-9372)Joe Pamer2018-09-251-0/+1
* bpo-34683: Make SyntaxError column offsets consistently 1-indexed (gh-9338)Ammar Askar2018-09-245-8/+47
* bpo-34783: Add test_cmd_line_script.test_nonexisting_script() (GH-9535)Victor Stinner2018-09-241-0/+19
* bpo-34582: Update syntax of Azure Pipelines builds (GH-9521)Steve Dower2018-09-241-6/+17
* bpo-34728: Remove deprecate *loop* argument in asyncio.sleep (GH-9415)João Júnior2018-09-241-0/+29
* bpo-34659: Adds initial kwarg to itertools.accumulate() (GH-9345)Lisa Roach2018-09-241-0/+6
* bpo-17239: Disable external entities in SAX parser (GH-9217)Christian Heimes2018-09-233-2/+78
* bpo-34670: Add TLS 1.3 post handshake auth (GH-9460)Christian Heimes2018-09-231-1/+192
* bpo-34759: Fix error handling in ssl 'unwrap()' (GH-9468)Nathaniel J. Smith2018-09-221-0/+41
* bpo-29577: Enum: mixin classes don't mix well with already mixed Enums (GH-9328)Ethan Furman2018-09-221-0/+199
* bpo-32117: Allow tuple unpacking in return and yield statements (gh-4509)David Cuthbert2018-09-221-1/+10
* bpo-34537: Fix test_gdb:test_strings with LC_ALL=C (GH-9483)Elvis Pranskevichus2018-09-221-1/+14
* Minor performance tweak for deque.index() with a start argument (GH-9440)Raymond Hettinger2018-09-211-0/+8
* bpo-34011: Fixes missing venv files and other tests (GH-9458)Steve Dower2018-09-204-91/+115
* bpo-34754: Fix test_flush_return_value on FreeBSD (GH-9451)Berker Peksag2018-09-201-2/+3
* bpo-19756: Prevent test failures due to EADDRNOTAVAIL (GH-9446)Berker Peksag2018-09-201-0/+3
* Revert "bpo-34589: Add -X coerce_c_locale command line option (GH-9378)" (GH-...Victor Stinner2018-09-195-59/+22
* bpo-25711: Remove outdated zipimport tests. (GH-9404)Serhiy Storchaka2018-09-191-49/+0
* bpo-34125: Enable profiling of method_descriptor in all cases (GH-8416)jdemeyer2018-09-191-0/+18
* bpo-25711: Rewrite zipimport in pure Python. (GH-6809)Serhiy Storchaka2018-09-184-20/+25
* bpo-34582: Adds JUnit XML output for regression tests (GH-9210)Steve Dower2018-09-188-30/+298
* bpo-33721: Make some os.path functions and pathlib.Path methods be tolerant ...Serhiy Storchaka2018-09-184-16/+75
* bpo-32455: Add jump parameter to dis.stack_effect(). (GH-6610)Serhiy Storchaka2018-09-181-14/+47
* bpo-34589: Add -X coerce_c_locale command line option (GH-9378)Victor Stinner2018-09-184-16/+57
* bpo-34589: C locale coercion off by default (GH-9073)Victor Stinner2018-09-171-4/+0
* bpo-34589: Make _PyCoreConfig.coerce_c_locale private (GH-9371)Victor Stinner2018-09-171-2/+2
* bpo-34587, test_socket: remove RDSTest.testCongestion() (GH-9277)Victor Stinner2018-09-171-27/+0
* bpo-34341: Fix appending to ZIP archives with the ZIP64 extension. (GH-8683)Serhiy Storchaka2018-09-171-0/+14
* bpo-12458: Fix line numbers for multiline expressions. (GH-8774)Serhiy Storchaka2018-09-175-7/+11
* bpo-34610: Fixed iterator of multiprocessing.managers.DictProxy. (GH-9113)Serhiy Storchaka2018-09-171-0/+23
* bpo-34579: Fix test_embed DEFAULT_CON AIX (GH-9063)Michael Felt2018-09-151-3/+7