summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* test.support.SaveSignals: fix typo (GH-7448)Victor Stinner2018-06-061-1/+1
* bpo-31044, test_posix: Reenable makedev() tests on FreeBSD (#7449)Victor Stinner2018-06-061-5/+0
* bpo-33504: Migrate configparser from OrderedDict to dict. (#6819)John Reese2018-06-052-2/+3
* Improve the subprocess restore_signals=True test. (GH-7414)Gregory P. Smith2018-06-051-6/+22
* bpo-12486: Document tokenize.generate_tokens() as public API (#6957)Thomas Kluyver2018-06-052-5/+21
* bpo-33751: Fix test_file. (GH-7378)Serhiy Storchaka2018-06-051-84/+78
* bpo-33755: Fix importlib.resources isolation tests (#7412)Barry Warsaw2018-06-052-1/+9
* bpo-33165: Added stacklevel parameter to logging APIs. (GH-7424)Vinay Sajip2018-06-052-3/+41
* bpo-33752: Fix a file leak in test_dbm. (GH-7376)Serhiy Storchaka2018-06-051-4/+2
* bpo-33769: start_tls: Fix error message; cancel callbacks on error (GH-7403)Yury Selivanov2018-06-052-3/+6
* bpo-33767: Fix improper use of SystemError by mmap.mmap objects (GH-7381)Zackery Spytz2018-06-051-0/+7
* bpo-33753: Refactor creating temporary files in test_fileinput. (GH-7377)Serhiy Storchaka2018-06-051-148/+101
* bpo-33720: Reduces maximum marshal recursion depth on release builds. (GH-7401)Steve Dower2018-06-041-1/+4
* bpo-33763: IDLE: Replace label widget with text widget in code context (GH-7367)Cheryl Sabella2018-06-042-52/+56
* bpo-33664: Scroll IDLE editor text by lines (GH-7351)Cheryl Sabella2018-06-041-2/+27
* bpo-33734: asyncio/ssl: a bunch of bugfixes (#7321)Yury Selivanov2018-06-046-68/+253
* 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