summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* 3.6.6rc1v3.6.6rc1Ned Deily2018-06-121-457/+446
* bpo-33656: Mention color in idlelib/NEWS.txt entry. (GH-7646)Miss Islington (bot)2018-06-111-4/+5
* bpo-33656: Add enum name for argument of Windows call. (GH-7642)Miss Islington (bot)2018-06-111-1/+4
* bpo-33656: On Windows, add API call saying that tk scales for DPI (GH-7137)Miss Islington (bot)2018-06-113-3/+20
* pypi.python.org -> pypi.org (GH-7613) (GH-7615)Miss Islington (bot)2018-06-111-1/+1
* bpo-30167: Prevent site.main() exception if PYTHONSTARTUP is set. (GH-6731) (...Miss Islington (bot)2018-06-111-2/+2
* bpo-33812: Corrected astimezone for naive datetimes. (GH-7578) (GH-7601)Miss Islington (bot)2018-06-102-12/+22
* bpo-33748: fix tests altering sys.path and sys.modules (GH-7433) (GH-7603)Miss Islington (bot)2018-06-101-19/+20
* bpo-33610: Update IDLE Code Context doc entry (GH-7597)Miss Islington (bot)2018-06-101-202/+206
* bpo-33718: regrtest: use "xxx then yyy" result if re-run (GH-7521)Miss Islington (bot)2018-06-092-7/+44
* bpo-30805: Avoid race condition with debug logging (GH-7545)Miss Islington (bot)2018-06-081-2/+4
* bpo-11874: fix assertion failure in argparse metavar handling (GH-1826)Miss Islington (bot)2018-06-082-10/+38
* Update idlelib/NEWS.txt to 2018 Jun 8 am. (GH-7517)Miss Islington (bot)2018-06-081-0/+27
* bpo-33768: IDLE: Clicking on code context line moves it to top of editor (GH-...Miss Islington (bot)2018-06-082-0/+49
* 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
* bpo-33763: IDLE: Replace label widget with text widget in code context (GH-7367)Miss Islington (bot)2018-06-042-52/+56
* bpo-33664: Scroll IDLE editor text by lines (GH-7351)Miss Islington (bot)2018-06-041-2/+27
* [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-33679: IDLE: Re-enable color configuration for code context (GH-7199)Miss Islington (bot)2018-06-025-35/+67
* bpo-33642: IDLE: Use variable number of lines in CodeContext. (GH-7106)Miss Islington (bot)2018-06-025-29/+31
* 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-31238: pydoc ServerThread.stop() now joins itself (GH-3151) (GH-7324)Victor Stinner2018-06-011-0/+4
* bpo-33540, socketserver: Add _block_on_close for tests (GH-7317)Victor Stinner2018-06-013-31/+57
* [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
* Improve ensurepip's --help (GH-4686) (GH-7239)Miss Islington (bot)2018-05-301-3/+3
* bpo-32684: Fix gather to propagate cancel of itself with return_exceptions (G...Yury Selivanov2018-05-292-2/+38
* 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-292-19/+53
* bpo-33672: Fix Task.__repr__ crash with Cython's bogus coroutines (GH-7180)Yury Selivanov2018-05-293-12/+41
* bpo-33674: asyncio: Fix SSLProtocol race (GH-7175) (GH-7188)Victor Stinner2018-05-291-1/+1
* bpo-33469: RuntimeError after closing loop that used run_in_executor (GH-7171)Miss Islington (bot)2018-05-292-0/+21
* bpo-31647: Fix write_eof() after close() for SelectorSocketTransport (GH-7149...Miss Islington (bot)2018-05-282-1/+7