summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* bpo-33812: Corrected astimezone for naive datetimes. (GH-7578) (GH-7601)Miss Islington (bot)2018-06-101-9/+16
* bpo-33718: regrtest: use "xxx then yyy" result if re-run (GH-7521)Miss Islington (bot)2018-06-092-7/+44
* bpo-11874: fix assertion failure in argparse metavar handling (GH-1826)Miss Islington (bot)2018-06-081-9/+33
* bpo-33786: Fix asynchronous generators to handle GeneratorExit in athrow() (G...Yury Selivanov2018-06-081-0/+56
* [3.6] bpo-32676, test_asyncio: Fix warning in test_error_in_call_soon() (GH-7...Victor Stinner2018-06-072-2/+6
* bpo-33773: Fix test.support.fd_count() on Linux/FreBSD (GH-7421)Miss Islington (bot)2018-06-062-8/+21
* bpo-33751: Fix test_file. (GH-7378)Miss Islington (bot)2018-06-051-84/+78
* [3.6] bpo-33753: Refactor creating temporary files in test_fileinput. (GH-737...Serhiy Storchaka2018-06-051-126/+88
* bpo-33752: Fix a file leak in test_dbm. (GH-7376)Miss Islington (bot)2018-06-051-4/+2
* bpo-33767: Fix improper use of SystemError by mmap.mmap objects (GH-7381)Miss Islington (bot)2018-06-051-0/+7
* bpo-33761: Fix a file leak in test_iterparse in test_xml_etree. (GH-7358)Miss Islington (bot)2018-06-041-3/+5
* [3.6] bpo-33759: Fix test.test_xmlrpc.ServerProxyTestCase. (GH-7362) (GH-7375)Serhiy Storchaka2018-06-041-7/+3
* bpo-33760: Fix file leaks in test_io. (GH-7361) (GH-7372)Miss Islington (bot)2018-06-041-0/+4
* bpo-33750: Reset thread-local context precision in test_round(). (GH-7355) (#...Miss Islington (bot)2018-06-031-11/+11
* bpo-33744: Fix test_uu. (GH-7350) (GH-7353)Miss Islington (bot)2018-06-031-78/+26
* bpo-33532: Fix test_multiprocessing_forkserver.test_ignore() (GH-7322)Victor Stinner2018-06-011-31/+33
* bpo-33718: Update regrtest from master (GH-7325)Victor Stinner2018-06-019-70/+97
* bpo-33540, socketserver: Add _block_on_close for tests (GH-7317)Victor Stinner2018-06-012-29/+30
* [3.6] bpo-31234: Add test.support.wait_threads_exit() (GH-3578) (GH-7315)Victor Stinner2018-06-016-102/+163
* bpo-31479: Always reset the signal alarm in tests (GH-3588) (GH-7312)Victor Stinner2018-06-016-40/+56
* test.bisect: Update from master, fix typos (#7311)Victor Stinner2018-06-011-3/+3
* bpo-31009: Move fd_count() to test.support (#7308)Victor Stinner2018-06-013-39/+60
* bpo-33692: Update pythoninfo from master (GH-7301)Victor Stinner2018-06-011-0/+29
* bpo-33532: Fix multiprocessing test_ignore() (GH-7262) (#7266)Victor Stinner2018-05-311-2/+3
* regrtest: repeat summary after re-run (GH-7159) (GH-7245)Victor Stinner2018-05-301-6/+19
* bpo-33692: pythoninfo detect libedit on Python 3.6 (GH-7244)Victor Stinner2018-05-301-0/+8
* bpo-32684: Fix gather to propagate cancel of itself with return_exceptions (G...Yury Selivanov2018-05-291-1/+28
* Fix ci for 3.6 / asyncio / test_stdin_broken_pipe (#7212)Yury Selivanov2018-05-291-0/+1
* bpo-33197: Update a error message of invalid inspect.Parameters. (GH-6636) (#...Miss Islington (bot)2018-05-291-3/+22
* bpo-33672: Fix Task.__repr__ crash with Cython's bogus coroutines (GH-7180)Yury Selivanov2018-05-291-0/+22
* bpo-33469: RuntimeError after closing loop that used run_in_executor (GH-7171)Miss Islington (bot)2018-05-291-0/+18
* bpo-31647: Fix write_eof() after close() for SelectorSocketTransport (GH-7149...Miss Islington (bot)2018-05-281-0/+6
* bpo-32374: Ignore Python-level exceptions in test_bad_traverse (GH-7145)Miss Islington (bot)2018-05-281-7/+13
* bpo-33655: Also ignore test_posix_fallocate failures on BSD platforms (GH-7134)Miss Islington (bot)2018-05-261-1/+6
* test.regrtest: flush stdout when display progress (GH-7105)Miss Islington (bot)2018-05-251-2/+2
* [3.6] bpo-26819: Prevent proactor double read on resume (GH-6921) (#7110)CtrlZvi2018-05-251-1/+8
* bpo-33629: Prevent coredump in test_importlib (GH-7090)Miss Islington (bot)2018-05-241-1/+4
* [3.6] Improve comments in test_idle.py. (GH-7057) (GH-7060)Terry Jan Reedy2018-05-221-6/+10
* bpo-30877: Fix clearing a cache in the the JSON decoder. (GH-7048)Miss Islington (bot)2018-05-221-1/+3
* [3.6] bpo-33263: Fix FD leak in _SelectorSocketTransport (GH-6450) (#7025)Andrew Svetlov2018-05-211-0/+15
* bpo-33522: Enable CI builds on Visual Studio Team Services (GH-6865) (GH-6925)Steve Dower2018-05-176-9/+40
* bpo-32384: Skip test when _testcapi isn't available (GH-4940)Miss Islington (bot)2018-05-161-1/+7
* [3.7] bpo-32861: urllib.robotparser fix incomplete __str__ methods. (GH-5711)...Miss Islington (bot)2018-05-141-0/+27
* bpo-32601: Let test_expanduser use the same user if no others found. (GH-5246)Miss Islington (bot)2018-05-141-0/+3
* Backport recent typing updates (GH-6759)Ivan Levkivskyi2018-05-111-0/+70
* closes bpo-33445: fail properly in test_cprofile() (GH-6727)Miss Islington (bot)2018-05-091-6/+11
* [3.6] bpo-20087: Update locale alias mapping with glibc 2.27 supported locale...Miss Islington (bot)2018-05-061-1/+1
* bpo-31908: Fix output of cover files for trace module command-line tool. (GH-...Miss Islington (bot)2018-05-011-0/+41
* bpo-33256: Replace angle brackets around python object repr to display it in ...Miss Islington (bot)2018-04-291-0/+1
* bpo-31026: Fix test_dbm if dbm.ndbm is build with Berkeley DB. (GH-6632)Miss Islington (bot)2018-04-292-2/+29