summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* bpo-33664: Scroll IDLE editor text by lines (GH-7351)Cheryl Sabella2018-06-042-2/+32
| | | | | | Previously, the mouse wheel and scrollbar slider moved text by a fixed number of pixels, resulting in partial lines at the top of the editor box. The change also applies to the shell and grep output windows, but not to read-only text views.
* bpo-33734: asyncio/ssl: a bunch of bugfixes (#7321)Yury Selivanov2018-06-048-72/+258
| | | | | | | * Fix AttributeError (not all SSL exceptions have 'errno' attribute) * Increase default handshake timeout from 10 to 60 seconds * Make sure start_tls can be cancelled correctly * Make sure any error in SSLProtocol gets propagated (instead of just being logged)
* bpo-31849: Fix warning in pyhash.c (GH-6799)A. Jesse Jiryu Davis2018-06-042-2/+3
|
* bpo-27902: Add compatibility note to Profile docs (GH-7295)Tobias Kunze2018-06-041-5/+6
|
* bpo-33640, uuid.UUID doc: document endian of bytes parameter (GH-7263)Farhaan Bukhsh2018-06-041-6/+7
| | | The bytes parameter uses big endian.
* Regenerate configure after changing configure.ac in GH-6987. (GH-7344)Serhiy Storchaka2018-06-041-2/+2
|
* bpo-33509: Fix test_warnings for python3 -Werror (GH-7365)Victor Stinner2018-06-041-0/+2
| | | | Fix test_warnings.test_module_globals() when python3 is run with -Werror.
* travis: Fix macOS build (GH-7250)INADA Naoki2018-06-041-1/+1
| | | | | | Homebrew's python is now python3, but travis preinstalls old python2. So updated Homebrew requires `brew upgrade python` now. This commit disables auto update and use preinstalled version of Homebrew.
* bpo-33759: Fix test.test_xmlrpc.ServerProxyTestCase. (GH-7362)Serhiy Storchaka2018-06-041-1/+3
| | | It depended on a global variable set by other tests.
* bpo-33760: Fix file leaks in test_io. (GH-7361)Serhiy Storchaka2018-06-041-0/+4
|
* bpo-33764: Appveyor fixes (GH-7364)Zachary Ware2018-06-041-4/+5
| | | | | | * Prevent spurious message if taking a shortcut * Fix YAML style * Disable largefile tests
* 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
| | | Separate tests leaked files or were depended on files leaked in other tests.
* bpo-23495: Correct the documentation for writerows() of csv Writer objects ↵Zackery Spytz2018-06-021-2/+3
| | | | | (GH-6316) `writerows()` takes an iterable.
* Fix typo in datamodel.rst (GH-6964)Zach Mitchell2018-06-021-1/+1
| | | This is a simple grammatical fix correcting "...object whose `__self__` attributes is ..." to "...object whose `__self__` attribute is ...".
* Docs: fix some wrong words (GH-6987)Eitan Adler2018-06-022-3/+3
| | | Fix typos in code comments: bdb.py and configure.ac.
* bpo-33562: Check the global asyncio event loop policy isn't set after any ↵Brett Cannon2018-06-0226-2/+98
| | | | tests (GH-7328)
* bpo-33679: IDLE: Re-enable color configuration for code context (GH-7199)Cheryl Sabella2018-06-026-35/+79
| | | | | | | | | | | | | The difference from before is that the settings are now on the Highlights tab instead of the Extensions tab and only change one theme at a time instead of all themes. The default for light themes is black on light gray, as before. The default for the IDLE Dark theme is white on dark gray, which better fits the dark theme. When one starts IDLE from a console and loads a custom theme without definitions for 'context', one will see a warning message on the console. To stop the warning, go to Options => Configure IDLE => Highlights, select the custom theme if not selected already, select 'Code Context', and select foreground and background colors.
* bpo-33615: Re-enable a subinterpreter test. (gh-7251)Eric Snow2018-06-024-23/+42
| | | For bpo-32604 I added extra subinterpreter-related tests (see #6914), which caused a few buildbots to crash. This patch fixes the crash by ensuring that refcounts in channels are handled properly.
* bpo-33642: IDLE: Use variable number of lines in CodeContext. (GH-7106)Cheryl Sabella2018-06-016-29/+40
| | | | | | | | | | Instead of displaying a fixed number of lines, some blank, Code Context now displays the variable number of actual context lines. When there are no context lines, it shows a single blank line to indicate that the feature is turned on. The Code Context configuration option is changed from 'numlines' (default 3) to 'maxlines' (default 15) to avoid possible interference between user settings for the old and new versions of Code Context.
* bpo-33724: Use the right format code for int64_t in subinterpreters code. ↵Eric Snow2018-06-011-32/+33
| | | | | | (gh-7330)
* bpo-29235: Make cProfile.Profile a context manager (GH-6808)Scott Sanderson2018-06-014-0/+52
|
* bpo-33532: Fix test_multiprocessing_forkserver.test_ignore() (GH-7319)Victor Stinner2018-06-011-2/+5
| | | | Use also support.SOCK_MAX_SIZE, not only support.PIPE_MAX_SIZE, to get the size for a blocking send into a multiprocessing pipe.
* bpo-33540: Fix socketserver.ThreadingMixIn if block_on_close=False (GH-7310)Victor Stinner2018-06-011-1/+1
| | | | socketserver.ThreadingMixIn no longer tracks active threads if block_on_close is false.
* bpo-30654: Do not reset SIGINT handler to SIG_DFL in finisignal (GH-7146)pkerling2018-06-012-12/+4
|
* bpo-33400: Removed references to RFC3339 and ISO8601 from the logging ↵Vinay Sajip2018-06-012-12/+12
| | | | documentation. (GH-7297)
* bpo-32519: Removed misleading sentence from EnvBuilder documentation. (GH-7296)Vinay Sajip2018-06-011-2/+1
|
* bpo-33718: regrtest: enhance "running:" formatting (GH-7292)Victor Stinner2018-06-013-43/+51
| | | | | * "running:" progress: Format number of seconds as hours and minutes * format_duration(): count also minutes as hours * Create Lib/test/libregrtest/utils.py
* bpo-33692: pythoninfo detect libedit on Python 3.6 (GH-7293)Victor Stinner2018-06-011-0/+8
| | | | Check which readline implementation is used based on the readline docstring.
* bpo-33606: improve logging performance when logger is disabled (GH-7285)Timo Furrer2018-06-012-0/+15
| | | A check has been added in Logger.isEnabledFor() to return False when the logger is disabled. This avoids unnecessary work being done when a disabled logger is used.
* bpo-33718: regrtest keeps filters to re-run fails (GH-7291)Victor Stinner2018-05-311-17/+22
| | | | | | * No longer clear filters, like --match, to re-run failed tests in verbose mode (-w option). * Tests result: always indicate if tests have been interrupted. * Enhance tests summary
* bpo-33717: pythoninfo: add CC --version (#7290)Victor Stinner2018-05-311-0/+29
| | | Get the version of the C compiler.
* bpo-33615: Temporarily disable a test that is triggering crashes on a few ↵Eric Snow2018-05-311-0/+2
| | | | | buildbots. (gh-7288) For bpo-32604 I added some subinterpreter-related tests (see #6914) that are causing crashes on a few buildbots. I'm working on fixing the crashes (see #7251). This change temporarily disables the triggering test.
* bpo-33706: Fix pymain_parse_cmdline_impl() (GH-7283)Victor Stinner2018-05-312-1/+3
| | | | | | | | | | Fix a crash in Python initialization when parsing the command line options. Fix memcpy() size parameter: previously, we read one wchar_t after the end of _PyOS_optarg. Moreover, don't copy the trailingg NUL character: we write it manually anyway. Thanks Christoph Gohlke for the bug report and the fix!
* bpo-32911: Add the historical note about the magic number. (GH-7273)Serhiy Storchaka2018-05-312-111/+113
|
* Fix "ditribution" typo in NEWS entry. (GH-7274)Ned Deily2018-05-311-1/+1
|
* Adds new upload script for Windows releases (GH-7268)Steve Dower2018-05-311-0/+121
|
* bpo-33641: Convert RFC references into links. (GH-7103)Serhiy Storchaka2018-05-3123-60/+56
| | | | 85% of them are already links.
* bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196)Serhiy Storchaka2018-05-313-5/+8
|
* bpo-33532: Fix multiprocessing test_ignore() (#7262)Victor Stinner2018-05-311-2/+2
| | | | | Fix test_ignore() of multiprocessing tests like test_multiprocessing_forkserver: use support.PIPE_MAX_SIZE to make sure that send_bytes() blocks.
* bpo-31368: Enhance os.preadv() documentation (GH-7254)Pablo Galindo2018-05-302-98/+118
|
* 3.6 what's new: fix a reference to PEP 528 (#7113)Dmitry Shachnev2018-05-301-1/+1
|
* bpo-33696: Install python-docs-theme even if SPHINXBUILD is defined (GH-7242)Andrés Delfino2018-05-301-9/+7
|
* bpo-33691: Add _PyAST_GetDocString(). (GH-7236)Serhiy Storchaka2018-05-305-58/+48
|
* Improve ensurepip's --help (GH-4686)Wieland Hoffmann2018-05-301-3/+3
| | | | | | | | * Add a space to ensurepip's --altinstall option * Add periods to the arguments of ensurepip that didn't have it This makes --help for all optional arguments consistent and also makes it consistent with pip --help.
* bpo-33238: Add InvalidStateError to concurrent.futures. (GH-7056)jhaydaman2018-05-306-6/+59
| | | | | | | Future.set_result and Future.set_exception now raise InvalidStateError if the futures are not pending or running. This mirrors the behavior of asyncio.Future, and prevents AssertionErrors in asyncio.wrap_future when set_result is called multiple times.
* Revert "A better fix for asyncio test_stdin_broken_pipe (GH-7221)" (GH-7235)Yury Selivanov2018-05-301-4/+2
| | | | | This reverts commit ad74d50517c069359578014bb32e660828d68332. Turns out it's not a good fix -- Travis has just crashed on this test.
* A better fix for asyncio test_stdin_broken_pipe (#7221)Yury Selivanov2018-05-301-2/+4
|