summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
...
* [3.6] bpo-27340: Use memoryview in SSLSocket.sendall() (GH-3384) (#3434)Christian Heimes2017-09-071-1/+11
* bpo-30465: Fix lineno and col_offset in fstring AST nodes (GH-1800) (gh-3409)Miss Islington (bot)2017-09-071-0/+248
* [3.6] bpo-31178: Avoid concatenating bytes with str in subprocess error (GH-3...Gregory P. Smith2017-09-061-0/+47
* [3.6] Stop test_xmlrpc from writing to sys.stderr (GH-3359) (#3380)Miss Islington (bot)2017-09-061-0/+4
* [3.6] bpo-29781: Fix SSLObject.version before handshake (GH-3364) (#3381)Christian Heimes2017-09-061-0/+2
* [3.6] bpo-31320: No traceback to sys.stderr in test_ssl (GH-3360) (GH-3369)Miss Islington (bot)2017-09-061-1/+4
* bpo-30442: Skips refcount test in test_xml_etree under coverage (#1767) (#3363)Victor Stinner2017-09-061-0/+1
* bpo-30445: Allow appended output in RecursionError message (#3356)Victor Stinner2017-09-051-1/+2
* bpo-22536 [3.6] Set filename in FileNotFoundError (#3305)Gregory P. Smith2017-09-041-0/+12
* [3.6] bpo-25674: remove sha256.tbs-internet.com ssl test (GH-3297) (#3300)Christian Heimes2017-09-042-156/+0
* [3.6] bpo-29212: Fix the ugly repr() ThreadPoolExecutor thread name. (GH-2315...Gregory P. Smith2017-09-031-4/+3
* [3.6] Fix a c.f.as_completed() refleak previously introduced in bpo-27144 (GH...Antoine Pitrou2017-09-031-1/+1
* bpo-31185: Fixed miscellaneous errors in asyncio speedup module. (#3076) (#3269)Serhiy Storchaka2017-09-031-8/+37
* [3.6] bpo-27144: concurrent.futures as_complete and map iterators do not keep...Antoine Pitrou2017-09-011-0/+48
* bpo-31217: Fix regrtest -R for small integer (#3260) (#3261)Victor Stinner2017-09-011-3/+11
* bpo-31249: Fix ref cycle in ThreadPoolExecutor (#3253)Victor Stinner2017-09-011-12/+20
* [3.6] bpo-31291: Fixed an assertion failure in zipimport.zipimporter.get_data...Oren Milman2017-08-301-0/+17
* [3.6] bpo-31243: Fixed PyArg_ParseTuple failure checks. (GH-3171) (#3233)Oren Milman2017-08-291-0/+20
* [3.6] bpo-31271: Fix an assertion failure in io.TextIOWrapper.write. (GH-3201...Oren Milman2017-08-261-0/+8
* [3.6] bpo-28261: Prevent raising SystemError where PyArg_ParseTuple is used t...Oren Milman2017-08-262-0/+5
* bpo-31161: only check for parens error for SyntaxError (#3083)Martijn Pieters2017-08-221-0/+28
* bpo-31259: test_urllib2_localnet uses addCleanup(server.stop) (#3186)Victor Stinner2017-08-221-5/+14
* bpo-31234: fork_wait tests now join threads (#3139) (#3187)Victor Stinner2017-08-221-8/+17
* [3.6] bpo-30871: Add test.pythoninfo (#3174)Victor Stinner2017-08-212-3/+471
* [3.6] bpo-30121: Fix debug assert in subprocess on Windows (#1224) (#3173)Victor Stinner2017-08-211-8/+52
* [3.6] bpo-31232: Backport custom print rshift message (GH-3155)Nick Coghlan2017-08-191-0/+33
* bpo-31234: test_threading: fix ref cycle (#3150) (#3152)Victor Stinner2017-08-191-0/+2
* bpo-31235: Fix ResourceWarning in test_logging (#3147) (#3149)Victor Stinner2017-08-181-0/+1
* bpo-31069, test_multiprocessing: Fix dangling process (#3103) (#3104)Victor Stinner2017-08-161-1/+2
* [3.6] bpo-30714: ALPN changes for OpenSSL 1.1.0f (#3093)Christian Heimes2017-08-151-2/+3
* bpo-31067: test_subprocess calls reap_children() (#2931) (#3074)Victor Stinner2017-08-111-0/+2
* bpo-31173: Rewrite WSTOPSIG test of test_subprocess (#3055) (#3070)Victor Stinner2017-08-111-35/+22
* bpo-31008: Fix asyncio test_wait_for_handle on Windows (#3065) (#3068)Victor Stinner2017-08-101-1/+3
* [3.6] bpo-31160: Backport reap_children() fixes from master to 3.6 (#3060)Victor Stinner2017-08-103-1/+16
* [3.6] bpo-31150: Wait for child process in test_forkinthread to avoid thread ...Ammar Askar2017-08-091-0/+2
* bpo-31029: test_tokenize Add missing import unittest (#2998)Rajath Agasthya2017-08-051-0/+1
* [3.6] bpo-31107: Fix copyreg mangled slot names calculation. (GH-2989) (#3003)Shane Harvey2017-08-051-0/+10
* [3.6] bpo-31071: Avoid masking original TypeError in call with * unpacking (G...Serhiy Storchaka2017-08-031-0/+16
* [3.6] bpo-30978: str.format_map() now passes key lookup exceptions through. (...Serhiy Storchaka2017-08-032-1/+8
* bpo-31061: fix crash in asyncio speedup module (GH-2984)INADA Naoki2017-08-022-0/+27
* [3.6] bpo-31027: Fix test_listcomps failure when run directly (GH-2939) (#2945)Terry Jan Reedy2017-07-291-1/+1
* bpo-31044: Skip test_posix.test_makedev() on FreeBSD (#2915) (#2917)Victor Stinner2017-07-271-0/+4
* bpo-31028: Fix test_pydoc when run directly (#2864) (#2910)Victor Stinner2017-07-271-1/+1
* bpo-30980: Fix double close in asyncore.file_wrapper (#2789) (#2898)Nir Soffer2017-07-261-1/+4
* [3.6] bpo-30119: fix ftplib.FTP.putline() to throw an error for a illegal com...Dong-hee Na2017-07-261-1/+5
* [3.6] bpo-30822: Fix testing of datetime module. (GH-2530) (GH-2783) (#2816)Utkarsh Upadhyay2017-07-262-8/+12
* bpo-30845: Enhance test_concurrent_futures cleanup (#2564) (#2880)Victor Stinner2017-07-262-1/+9
* [3.6] bpo-26762, bpo-31019: Backport multiprocessing fixes from master to 3.6...Victor Stinner2017-07-261-22/+103
* bpo-31034: Reliable signal handler for test_asyncio (#2867) (#2876)Victor Stinner2017-07-262-31/+45
* bpo-30908: Fix dangling thread in test_os.TestSendfile (#2680) (#2844)Victor Stinner2017-07-241-0/+1