summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* bpo-35257: Avoid leaking LTO linker flags into distutils (GH-10900) (GH-11264)Victor Stinner2018-12-232-1/+4
* bpo-35412: Skip test_multiprocessing_fork and test_multiprocessing_forkserver...Miss Islington (bot)2018-12-112-0/+7
* bpo-35426: Eliminate race condition in test_interprocess_signal (GH-11087)Miss Islington (bot)2018-12-111-22/+18
* bpo-34977: Add Windows App Store package (GH-11027)Steve Dower2018-12-111-1/+1
* [3.7] bpo-34977: Use venv redirector instead of original python.exe on Window...Steve Dower2018-12-101-0/+1
* bpo-35050: AF_ALG length check off-by-one error (GH-10058) (GH-11069)Victor Stinner2018-12-101-0/+18
* bpo-35052: Fix handler on xml.dom.minidom.cloneNode() (GH-11061) (GH-11066)Victor Stinner2018-12-101-2/+53
* bpo-33725: skip test_multiprocessing_fork on macOS (GH-11043)Miss Islington (bot)2018-12-091-0/+3
* Revert "[3.7] bpo-34977: Add Windows App Store package (GH-10245)" (GH-11021)Victor Stinner2018-12-072-2/+1
* [3.7] bpo-22005: Fixed unpickling instances of datetime classes pickled by Py...Serhiy Storchaka2018-12-071-0/+116
* [3.7] bpo-34977: Add Windows App Store package (GH-10245)Steve Dower2018-12-072-1/+2
* bpo-33023: Fix NotImplemented to NotImplementedError. (GH-10934)Miss Islington (bot)2018-12-061-1/+6
* bpo-35363: test_eintr uses print(flush=True) (GH-10990)Miss Islington (bot)2018-12-061-2/+3
* bpo-35424: test_multiprocessing: join 3 pools (GH-10986)Miss Islington (bot)2018-12-061-0/+3
* bpo-33709: test_ntpath and test_posixpath fail in Windows with ACP!=1252. (GH...Miss Islington (bot)2018-12-061-1/+5
* [3.7] Revert "bpo-34172: multiprocessing.Pool leaks resources after being del...Victor Stinner2018-12-061-7/+0
* bpo-35363: test_eintr runs eintr_tester.py in verbose mode (GH-10965)Miss Islington (bot)2018-12-051-1/+15
* bpo-34185: Fix test module collision in test_bdb when ran as script. (GH-8537)Miss Islington (bot)2018-12-051-8/+8
* bpo-10496: posixpath.expanduser() catchs pwd.getpwuid() error (GH-10919)Miss Islington (bot)2018-12-052-29/+86
* bpo-35363, test_eintr: skip test_open() on macOS (GH-10896) (GH-10911)Victor Stinner2018-12-051-2/+4
* bpo-35411: Skip test_urllib2net FTP tests on Travis CI (GH-10907)Miss Islington (bot)2018-12-052-0/+13
* bpo-29564: warnings suggests to enable tracemalloc (GH-10486) (GH-10509)Miss Islington (bot)2018-12-041-5/+20
* [3.7] bpo-35380: Enable TCP_NODELAY for proactor event loop (GH-10867) (GH-10...Miss Islington (bot)2018-12-032-27/+27
* bpo-35372: Fix the code page decoder for input > 2 GiB. (GH-10848)Miss Islington (bot)2018-12-031-0/+18
* bpo-35341: Add generic version of OrderedDict to typing (GH-10850)Miss Islington (bot)2018-12-021-0/+16
* bpo-35371: Fix possible crash in os.utime() on Windows. (GH-10844)Miss Islington (bot)2018-12-011-0/+23
* [3.7] bpo-35352: test_asyncio uses the certificate set from the test director...Victor Stinner2018-11-305-190/+2
* bpo-35347: Fix test_socket.NonBlockingTCPTests (GH-10791)Miss Islington (bot)2018-11-301-25/+39
* bpo-35336: Fix PYTHONCOERCECLOCALE=1 (GH-10806) (GH-10813)Victor Stinner2018-11-301-2/+26
* [3.7] bpo-34279: Synchronize regrtest with master (GH-10800)Victor Stinner2018-11-296-23/+119
* bpo-35189, bpo-35316: Make test_eintr less strict (GH-10782)Miss Islington (bot)2018-11-291-2/+0
* bpo-33723: Remove busy loop from test_time (GH-10773)Miss Islington (bot)2018-11-281-47/+0
* bpo-34022: Stop forcing of hash-based invalidation with SOURCE_DATE_EPOCH (GH...Miss Islington (bot)2018-11-283-12/+119
* pythoninfo: log more environment variable (GH-10719) (GH-10769)Victor Stinner2018-11-281-4/+45
* bpo-33676: Fix dangling thread in _test_multiprocessing (GH-10755)Miss Islington (bot)2018-11-281-0/+2
* bpo-35317: Fix mktime() error in test_email (GH-10721)Miss Islington (bot)2018-11-271-0/+2
* bpo-35308: Fix regression where BROWSER env var is not respected. (GH-10693)Miss Islington (bot)2018-11-261-0/+18
* bpo-33723: Fix test_time.test_thread_time() (GH-10724)Miss Islington (bot)2018-11-261-3/+7
* bpo-35313: Fix test_embed when run from venv (GH-10713) (GH-10715)Victor Stinner2018-11-261-39/+62
* bpo-29877: compileall: import ProcessPoolExecutor only when needed (GH-4856)Miss Islington (bot)2018-11-231-4/+4
* bpo-34812: subprocess._args_from_interpreter_flags(): add isolated (GH-10675)Miss Islington (bot)2018-11-231-2/+8
* [3.7] bpo-35189: Retry fnctl calls on EINTR (GH-10413) (GH-10678)Victor Stinner2018-11-231-20/+55
* Revert "bpo-35239: _PySys_EndInit() copies module_search_path (GH-10532)" (GH...Victor Stinner2018-11-221-3/+8
* bpo-35021: Fix assertion failures in _datetimemodule.c. (GH-10039)Miss Islington (bot)2018-11-201-6/+37
* bpo-35233: test_embed: fix filesystem encoding (GH-10597)Victor Stinner2018-11-191-2/+4
* Add --tempdir option for test run (GH-10322)Miss Islington (bot)2018-11-172-10/+8
* bpo-35239: _PySys_EndInit() copies module_search_path (GH-10532)Miss Islington (bot)2018-11-161-8/+3
* bpo-35233: InitConfigTests tests more config vars (GH-10541) (GH-10546)Victor Stinner2018-11-141-82/+136
* bpo-35233: Fix test_embed.InitConfigTests on macOS (GH-10539)Victor Stinner2018-11-141-1/+2
* bpo-35233: Fix _PyMainInterpreterConfig_Copy() (GH-10537)Victor Stinner2018-11-141-1/+1