summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-33509: Fix test_warnings for python3 -Werror (GH-7365)Victor Stinner2018-06-041-0/+2
* bpo-33759: Fix test.test_xmlrpc.ServerProxyTestCase. (GH-7362)Serhiy Storchaka2018-06-041-1/+3
* bpo-33760: Fix file leaks in test_io. (GH-7361)Serhiy Storchaka2018-06-041-0/+4
* bpo-33761: Fix a file leak in test_iterparse in test_xml_etree. (GH-7358)Serhiy Storchaka2018-06-031-3/+5
* bpo-33750: Reset thread-local context precision in test_round(). (#7355)Stefan Krah2018-06-031-11/+11
* bpo-27485: Change urlparse tests to use private methods. (GH-7070)Cheryl Sabella2018-06-031-12/+12
* bpo-33744: Fix test_uu. (GH-7350)Serhiy Storchaka2018-06-031-78/+26
* Docs: fix some wrong words (GH-6987)Eitan Adler2018-06-021-1/+1
* bpo-33562: Check the global asyncio event loop policy isn't set after any tes...Brett Cannon2018-06-0225-2/+96
* bpo-33679: IDLE: Re-enable color configuration for code context (GH-7199)Cheryl Sabella2018-06-025-35/+67
* bpo-33615: Re-enable a subinterpreter test. (gh-7251)Eric Snow2018-06-021-2/+0
* bpo-33642: IDLE: Use variable number of lines in CodeContext. (GH-7106)Cheryl Sabella2018-06-015-29/+31
* bpo-29235: Make cProfile.Profile a context manager (GH-6808)Scott Sanderson2018-06-012-0/+34
* bpo-33532: Fix test_multiprocessing_forkserver.test_ignore() (GH-7319)Victor Stinner2018-06-011-2/+5
* bpo-33540: Fix socketserver.ThreadingMixIn if block_on_close=False (GH-7310)Victor Stinner2018-06-011-1/+1
* bpo-33718: regrtest: enhance "running:" formatting (GH-7292)Victor Stinner2018-06-013-43/+51
* bpo-33692: pythoninfo detect libedit on Python 3.6 (GH-7293)Victor Stinner2018-06-011-0/+8
* bpo-33606: improve logging performance when logger is disabled (GH-7285)Timo Furrer2018-06-012-0/+15
* bpo-33718: regrtest keeps filters to re-run fails (GH-7291)Victor Stinner2018-05-311-17/+22
* bpo-33717: pythoninfo: add CC --version (#7290)Victor Stinner2018-05-311-0/+29
* bpo-33615: Temporarily disable a test that is triggering crashes on a few bui...Eric Snow2018-05-311-0/+2
* bpo-32911: Add the historical note about the magic number. (GH-7273)Serhiy Storchaka2018-05-311-0/+2
* bpo-33532: Fix multiprocessing test_ignore() (#7262)Victor Stinner2018-05-311-2/+2
* Improve ensurepip's --help (GH-4686)Wieland Hoffmann2018-05-301-3/+3
* bpo-33238: Add InvalidStateError to concurrent.futures. (GH-7056)jhaydaman2018-05-304-6/+39
* Revert "A better fix for asyncio test_stdin_broken_pipe (GH-7221)" (GH-7235)Yury Selivanov2018-05-301-4/+2
* A better fix for asyncio test_stdin_broken_pipe (#7221)Yury Selivanov2018-05-301-2/+4
* Revert "bpo-22087: Fix Policy.get_event_loop() to detect fork (GH-7208)" (#7232)Yury Selivanov2018-05-302-39/+0
* bpo-32684: Fix nits in tests (GH-7225)Yury Selivanov2018-05-291-3/+3
* bpo-32751: Wait for task cancellation in asyncio.wait_for() (GH-7216)Elvis Pranskevichus2018-05-293-2/+90
* bpo-32684: Fix gather to propagate cancel of itself with return_exceptions (G...Yury Selivanov2018-05-292-2/+41
* bpo-31639: Change ThreadedHTTPServer to ThreadingHTTPServer class name (GH-7195)Géry Ogam2018-05-291-3/+3
* bpo-22087: Fix Policy.get_event_loop() to detect fork (GH-7208)Yury Selivanov2018-05-292-0/+39
* Attempt to fix test_stdin_broken_pipe on Travis (#7210)Yury Selivanov2018-05-291-0/+1
* bpo-33197: Update a error message of invalid inspect.Parameters. (GH-6636)Dong-hee Na2018-05-292-19/+53
* bpo-33353: test_asyncio use set_write_buffer_limits() (GH-7200)Victor Stinner2018-05-292-18/+30
* bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197)Serhiy Storchaka2018-05-293-80/+73
* bpo-33654: Support protocol type switching in SSLTransport.set_protocol() (#7...Yury Selivanov2018-05-292-15/+43
* bpo-33674: Pause the transport as early as possible (#7192)Yury Selivanov2018-05-291-2/+5
* bpo-33674: asyncio: Fix SSLProtocol race (GH-7175)Victor Stinner2018-05-281-1/+1
* bpo-32410: Avoid blocking on file IO in sendfile fallback code (GH-7172)Yury Selivanov2018-05-284-2/+23
* bpo-32610: Fix asyncio.all_tasks() to return only pending tasks. (GH-7174)Yury Selivanov2018-05-284-5/+43
* bpo-33469: RuntimeError after closing loop that used run_in_executor (GH-7171)Yury Selivanov2018-05-282-0/+21
* bpo-33672: Fix Task.__repr__ crash with Cython's bogus coroutines (GH-7161)Yury Selivanov2018-05-283-40/+60
* bpo-32458: Further tune start_tls tests (#7166)Yury Selivanov2018-05-281-4/+6
* regrtest: repeat summary after re-run (GH-7159)Victor Stinner2018-05-281-6/+19
* bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130)Yury Selivanov2018-05-2811-61/+364
* bpo-33505: Optimize asyncio.ensure_future by reordering if conditions (GH-6836)jimmylai2018-05-281-5/+5
* bpo-31647: Fix write_eof() after close() for SelectorSocketTransport (GH-7149)twisteroid ambassador2018-05-282-1/+7
* bpo-32374: Ignore Python-level exceptions in test_bad_traverse (GH-7145)Marcel Plch2018-05-281-7/+13