Steve Dower [Wed, 7 Aug 2019 18:39:09 +0000 (11:39 -0700)]
bpo-37734: Remove unnecessary brace escapes in PC/layout script (GH-15165)
Steve Dower [Wed, 7 Aug 2019 17:50:17 +0000 (10:50 -0700)]
bpo-37778: Fixes the icons used for file associations to the Microsoft Store package (GH-15150)
Steve Dower [Wed, 7 Aug 2019 17:49:40 +0000 (10:49 -0700)]
bpo-37734: Fix use of registry values to launch Python from Microsoft Store app (GH-15146)
Géry Ogam [Wed, 7 Aug 2019 05:02:23 +0000 (07:02 +0200)]
Update pickle.rst (GH-14128)
* Edits for readability and grammar
sweeneyde [Wed, 7 Aug 2019 04:37:08 +0000 (00:37 -0400)]
bpo-37004: Documented asymmetry of string arguments in difflib.SequenceMatcher for ratio method (GH-13482)
https://bugs.python.org/issue37004
Raymond Hettinger [Wed, 7 Aug 2019 00:56:22 +0000 (17:56 -0700)]
bpo-37646: Document that eval() cannot access nested scopes (GH-15117)
Sergey Fedoseev [Wed, 7 Aug 2019 00:38:31 +0000 (05:38 +0500)]
bpo-34488: optimize BytesIO.writelines() (GH-8904)
Avoid the creation of unused int object for each line.
Barry Warsaw [Tue, 6 Aug 2019 23:59:07 +0000 (16:59 -0700)]
Make importlib.metadata a simple module (#15153)
Géry Ogam [Tue, 6 Aug 2019 21:12:22 +0000 (23:12 +0200)]
Improve signal documentation (GH-14274)
* add a missing ``.. availability::`` reST explicit markup;
* more consistent "see man page" sentences.
Raymond Hettinger [Mon, 5 Aug 2019 20:33:19 +0000 (13:33 -0700)]
bpo-37759: First round of major edits to Whatsnew 3.8 (GH-15127)
Terry Jan Reedy [Sun, 4 Aug 2019 23:48:52 +0000 (19:48 -0400)]
bpo-36419: IDLE - Refactor autocompete and improve testing. (#15121)
Timothy Hopper [Sun, 4 Aug 2019 21:23:29 +0000 (17:23 -0400)]
Adds Tim Hopper and Dan Lidral-Porter to ACKS (GH-15101)
Tim and Dan were authors for GH-11847
Terry Jan Reedy [Sun, 4 Aug 2019 20:45:15 +0000 (16:45 -0400)]
bpo-37748: Re-order the Run menu. (GH-15115)
Put the most common choice, Run Module, at the top.
Raymond Hettinger [Sun, 4 Aug 2019 20:35:58 +0000 (13:35 -0700)]
Update itertools docs (GH-15114)
* Remove suggestion that is less relevant now that global lookups are much faster
* Add link for installing the recipes
Raymond Hettinger [Sun, 4 Aug 2019 20:14:03 +0000 (13:14 -0700)]
bpo-28292: Mark calendar.py helper functions as private. (GH-15113)
Raymond Hettinger [Sun, 4 Aug 2019 18:52:04 +0000 (11:52 -0700)]
bpo-36324: Update comments to include the target hash sums (GH-15110)
Tal Einat [Sun, 4 Aug 2019 16:25:27 +0000 (19:25 +0300)]
bpo-37706: IDLE - fix sidebar code bug and drag tests (GH-15103)
Convert mouse y to line number in the sidebar rather than the text.
Serhiy Storchaka [Sun, 4 Aug 2019 11:12:48 +0000 (14:12 +0300)]
bpo-37648: Fixed minor inconsistency in some __contains__. (GH-14904)
The collection's item is now always at the left and
the needle is on the right of ==.
Serhiy Storchaka [Sun, 4 Aug 2019 09:38:46 +0000 (12:38 +0300)]
bpo-37685: Fixed comparisons of datetime.timedelta and datetime.timezone. (GH-14996)
There was a discrepancy between the Python and C implementations.
Add singletons ALWAYS_EQ, LARGEST and SMALLEST in test.support
to test mixed type comparison.
Florian Wendelborn [Sat, 3 Aug 2019 18:16:34 +0000 (20:16 +0200)]
Correct description of HTTP status code 308. (GH-15078)
Permanent redirect was explained as a temporary redirect.
Michael Felt [Sat, 3 Aug 2019 06:12:26 +0000 (08:12 +0200)]
bpo-18049: Define THREAD_STACK_SIZE for AIX to pass default recursion limit test (GH-15081)
* Define THREAD_STACK_SIZE for AIX to pass default recursion limit test
Ngalim Siregar [Sat, 3 Aug 2019 05:46:02 +0000 (12:46 +0700)]
bpo-37444: Update differing exception between builtins and importlib (GH-14869)
Imports now raise `TypeError` instead of `ValueError` for relative import failures. This makes things consistent between `builtins.__import__` and `importlib.__import__` as well as using a more natural import for the failure.
https://bugs.python.org/issue37444
Automerge-Triggered-By: @brettcannon
Timo Furrer [Fri, 2 Aug 2019 22:44:25 +0000 (00:44 +0200)]
bpo-30974: Change os.path.samefile docstring to match docs (GH-7337)
Timothy Hopper [Fri, 2 Aug 2019 22:20:14 +0000 (18:20 -0400)]
bpo-20523: pdb searches for .pdbrc in ~ instead of $HOME (GH-11847)
Previously pdb checked the $HOME environmental variable
to find the user .pdbrc. If $HOME is not set, the user
.pdbrc would not be found.
Change pdb to use `os.path.expanduser('~')` to determine
the user's home directory. Thus, if $HOME is not set (as
in tox or on Windows), os.path.expanduser('~') falls
back on other techniques for locating the user's home
directory.
This follows pip's implementation for loading .piprc.
Co-authored-by: Dan Lidral-Porter <dlp@aperiodic.org>
Greg Bowser [Fri, 2 Aug 2019 20:29:52 +0000 (16:29 -0400)]
bpo-36590: Add Bluetooth RFCOMM and support for Windows. (GH-12767)
Support for RFCOMM, L2CAP, HCI, SCO is based on the BTPROTO_* macros
being defined. Winsock only supports RFCOMM, even though it has a
BTHPROTO_L2CAP macro. L2CAP support would build on windows, but not
necessarily work.
This also adds some basic unittests for constants (all of which existed
prior to this commit, just not on windows) and creating sockets.
pair: Nate Duarte <slacknate@gmail.com>
Vinay Sajip [Fri, 2 Aug 2019 15:53:00 +0000 (16:53 +0100)]
bpo-37742: Return the root logger when logging.getLogger('root') is c… (#15077)
* bpo-37742: Return the root logger when logging.getLogger('root') is called.
* Added type check guard on logger name in logging.getLogger() and refined a test.
Joannah Nanjekye [Fri, 2 Aug 2019 15:50:22 +0000 (12:50 -0300)]
bpo-36487: Make C-API docs clear about what the main interpreter is. (gh-12666)
Inada Naoki [Fri, 2 Aug 2019 07:25:29 +0000 (16:25 +0900)]
bpo-37729: gc: write stats at once (GH-15050)
gc used several PySys_WriteStderr() calls to write stats.
It caused stats mixed up when stderr is shared by multiple
processes like this:
gc: collecting generation 2...
gc: objects in each generation: 0 0gc: collecting generation 2...
gc: objects in each generation: 0 0 126077 126077
gc: objects in permanent generation: 0
gc: objects in permanent generation: 0
gc: done, 112575 unreachable, 0 uncollectablegc: done, 112575 unreachable, 0 uncollectable, 0.2223s elapsed
, 0.2344s elapsed
tmblweed [Fri, 2 Aug 2019 04:57:13 +0000 (21:57 -0700)]
bpo-16970: Adding error message for invalid args (GH-14844)
BPO -16970: Adding error message for invalid args
Applied the patch argparse-v2 patch issue 16970, ran patch check and the test suite, test_argparse with 0 errors
https://bugs.python.org/issue16970
mental [Thu, 1 Aug 2019 14:17:30 +0000 (15:17 +0100)]
bpo-37726: Prefer argparse over getopt in stdlib tutorial (#15052)
Bernhard M. Wiedemann [Thu, 1 Aug 2019 13:18:03 +0000 (15:18 +0200)]
bpo-36302: Sort list of sources (GH-12341)
When building packages (e.g. for openSUSE Linux)
(random) filesystem order of input files
influences ordering of functions in the output .so files.
Thus without the patch, builds (in disposable VMs) would usually differ.
Without this patch, all callers have to be patched individually
https://github.com/dugsong/libdnet/pull/42
https://github.com/sass/libsass-python/pull/212
https://github.com/tahoe-lafs/pycryptopp/pull/41
https://github.com/yt-project/yt/pull/2206
https://github.com/pyproj4/pyproj/pull/142
https://github.com/pytries/datrie/pull/49
https://github.com/Roche/pyreadstat/pull/37
but that is an infinite effort.
See https://reproducible-builds.org/ for why this matters.
Ronald Oussoren [Thu, 1 Aug 2019 05:43:07 +0000 (07:43 +0200)]
bpo-18049: Sync thread stack size to main thread size on macOS (GH-14748)
This changeset increases the default size of the stack
for threads on macOS to the size of the stack
of the main thread and reenables the relevant
recursion test.
David H [Wed, 31 Jul 2019 22:49:55 +0000 (23:49 +0100)]
bpo-37730: Fix usage of NotImplemented instead of NotImplementedError in docs. (GH-15062)
yannvgn [Wed, 31 Jul 2019 18:50:39 +0000 (20:50 +0200)]
bpo-37723: Fix performance regression on regular expression parsing. (GH-15030)
Improve performance of sre_parse._uniq function.
Hai Shi [Wed, 31 Jul 2019 14:48:15 +0000 (09:48 -0500)]
bpo-34101: Add doc of PyBuffer_GetPointer (GH-14994)
Anthony Sottile [Wed, 31 Jul 2019 12:11:24 +0000 (05:11 -0700)]
bpo-37695: Correct unget_wch error message. (GH-14986)
karl ding [Wed, 31 Jul 2019 08:47:16 +0000 (01:47 -0700)]
bpo-37085: Expose SocketCAN bcm_msg_head flags (#13646)
Expose the CAN_BCM SocketCAN constants used in the bcm_msg_head struct
flags (provided by <linux/can/bcm.h>) under the socket library.
This adds the following constants with a CAN_BCM prefix:
* SETTIMER
* STARTTIMER
* TX_COUNTEVT
* TX_ANNOUNCE
* TX_CP_CAN_ID
* RX_FILTER_ID
* RX_CHECK_DLC
* RX_NO_AUTOTIMER
* RX_ANNOUNCE_RESUME
* TX_RESET_MULTI_IDX
* RX_RTR_FRAME
* CAN_FD_FRAME
The CAN_FD_FRAME flag was introduced in the 4.8 kernel, while the other
ones were present since SocketCAN drivers were mainlined in 2.6.25. As
such, it is probably unnecessary to guard against these constants being
missing.
Vinay Sajip [Wed, 31 Jul 2019 06:36:45 +0000 (07:36 +0100)]
Refined Qt GUI example in the logging cookbook. (GH-15045)
Terry Jan Reedy [Wed, 31 Jul 2019 05:35:30 +0000 (01:35 -0400)]
IDLE: changelog correction and addition (GH-15042)
Terry Jan Reedy [Wed, 31 Jul 2019 05:04:29 +0000 (01:04 -0400)]
bpo-33821: Update IDLE section of What's New 3.7 (#15036)
* bpo-33821: Update IDLE section of What's New 3.7
* Fix roles.
Terry Jan Reedy [Wed, 31 Jul 2019 05:03:53 +0000 (01:03 -0400)]
bpo-33822: Add IDLE section of What's New 3.8 (#15035)
* bpo-33822: Add IDLE section of What's New 3.8
* Fix role.
Terry Jan Reedy [Wed, 31 Jul 2019 04:58:45 +0000 (00:58 -0400)]
bpo-34162: Add missing items to idlelib/NEWS.txt. (GH-15034)
Min ho Kim [Tue, 30 Jul 2019 22:16:13 +0000 (08:16 +1000)]
Fix typos in comments, docs and test names (#15018)
* Fix typos in comments, docs and test names
* Update test_pyparse.py
account for change in string length
* Apply suggestion: splitable -> splittable
Co-Authored-By: Terry Jan Reedy <tjreedy@udel.edu>
* Apply suggestion: splitable -> splittable
Co-Authored-By: Terry Jan Reedy <tjreedy@udel.edu>
* Apply suggestion: Dealloccte -> Deallocate
Co-Authored-By: Terry Jan Reedy <tjreedy@udel.edu>
* Update posixmodule checksum.
* Reverse idlelib changes.
Terry Jan Reedy [Tue, 30 Jul 2019 22:14:58 +0000 (18:14 -0400)]
Fix idlelib typos discovered by min ho, pr 15018. (GH-15029)
Jake Tesler [Tue, 30 Jul 2019 21:41:46 +0000 (14:41 -0700)]
bpo-36084: Add threading Native ID information to What's New documentation (GH-14845)
Neil Schemenauer [Tue, 30 Jul 2019 19:08:17 +0000 (12:08 -0700)]
Don't skip pickle check_frame_opcodes() (GH-15025)
This looks like the only place that proto 4 framing gets exercised
so leave it as part of the PGO task.
Neil Schemenauer [Tue, 30 Jul 2019 18:08:18 +0000 (11:08 -0700)]
bpo-37707: Exclude expensive unit tests from PGO task (GH-15009)
Mark some individual tests to skip when --pgo is used. The tests
marked increase the PGO task time significantly and likely don't
help improve optimization of the final executable.
Victor Stinner [Tue, 30 Jul 2019 15:45:09 +0000 (17:45 +0200)]
bpo-37704: Remove Tools/scripts/h2py.py (GH-15000)
Use cffi to access a C API in Python.
Marco Paolini [Tue, 30 Jul 2019 14:16:34 +0000 (15:16 +0100)]
bpo-37587: Make json.loads faster for long strings (GH-14752)
When scanning the string, most characters are valid, so
checking for invalid characters first means never needing
to check the value of strict on valid strings, and only
needing to check it on invalid characters when doing
non-strict parsing of invalid strings.
This provides a measurable reduction in per-character
processing time (~11% in the pre-merge patch testing).
Pablo Galindo [Tue, 30 Jul 2019 11:04:01 +0000 (12:04 +0100)]
bpo-37268: Add deprecation notice and a DeprecationWarning for the parser module (GH-15017)
Deprecate the parser module and add a deprecation warning triggered on import and a warning block in the documentation.
https://bugs.python.org/issue37268
Automerge-Triggered-By: @pablogsal
Terry Jan Reedy [Mon, 29 Jul 2019 22:12:14 +0000 (18:12 -0400)]
bpo-34162: Update idlelib/news.txt. (#15011)
Terry Jan Reedy [Mon, 29 Jul 2019 21:57:36 +0000 (17:57 -0400)]
bpo-37706: Disable 3 IDLE scrollbar tests on Mac. (#15010)
They pass with tk 8.5.9 (Azure) but fail with the 8.6.x we install.
Steve Dower [Mon, 29 Jul 2019 18:22:27 +0000 (11:22 -0700)]
Fix publishing of Windows release (GH-15006)
Anthony Sottile [Mon, 29 Jul 2019 15:05:55 +0000 (08:05 -0700)]
Add additional test for multi-line SyntaxError (GH-15003)
Anthony Sottile [Mon, 29 Jul 2019 13:59:13 +0000 (06:59 -0700)]
Fix `SyntaxError` indicator printing too many spaces for multi-line strings (GH-14433)
Steve Dower [Mon, 29 Jul 2019 01:01:12 +0000 (18:01 -0700)]
bpo-36044: Avoid warnings in Windows PGO build and add lzma, bz2 and sqlite coverage (GH-14985)
https://bugs.python.org/issue36044
Automerge-Triggered-By: @zooba
Jason R. Coombs [Sun, 28 Jul 2019 18:59:24 +0000 (14:59 -0400)]
bpo-37697: Sync with importlib_metadata 0.19 (#14993)
* bpo-37697: Sync with importlib_metadata 0.19
* Run make regen-importlib
* 📜🤖 Added by blurb_it.
Terry Jan Reedy [Sun, 28 Jul 2019 16:04:31 +0000 (12:04 -0400)]
bpo-37692: Improve highlight config sample (#14983)
Use an example shell interaction in the sample and better labels for shell elements.
Nick Coghlan [Sun, 28 Jul 2019 11:40:47 +0000 (21:40 +1000)]
Remove trailing .0 from version changed note (GH-14987)
Raymond Hettinger [Sat, 27 Jul 2019 21:04:29 +0000 (14:04 -0700)]
bpo-37691: Let math.dist() accept sequences and iterables for coordinates (GH-14975)
Tal Einat [Sat, 27 Jul 2019 16:57:48 +0000 (19:57 +0300)]
bpo-37628: Fix IDLE config sample sizes (#14958)
The boxes for the font and highlight samples are now constrained by the overall config dialog size. They gain scrollbars when the when a large font size makes the samples too large for the box.
Vinay Sajip [Sat, 27 Jul 2019 12:46:53 +0000 (13:46 +0100)]
Add Qt GUI example to the logging cookbook. (GH-14978)
Tal Einat [Sat, 27 Jul 2019 03:24:37 +0000 (06:24 +0300)]
bpo-17535: Increase line number horizontal padding by 2 pixels (GH-14959)
Derek Keeler [Fri, 26 Jul 2019 21:57:11 +0000 (14:57 -0700)]
bpo-32910: Remove implementation detail in venv documentation. (GH-14968)
Steve Dower [Fri, 26 Jul 2019 20:03:58 +0000 (13:03 -0700)]
bpo-35524: Update Windows installer image in docs (GH-14966)
Steve Dower [Fri, 26 Jul 2019 16:06:04 +0000 (09:06 -0700)]
bpo-37664: Update regex for ignoring cache warning on some buildbots (GH-14960)
Inada Naoki [Fri, 26 Jul 2019 06:05:50 +0000 (15:05 +0900)]
bpo-37340: remove free_list for bound method objects (GH-14232)
Flavian Hautbois [Fri, 26 Jul 2019 01:30:33 +0000 (03:30 +0200)]
bpo-29446: tkinter 'import *' only imports what it should (GH-14864)
Add __all__ to tkinter.__init__ and submodules. Replace 'import *'
with explicit imports in some submodules.
Bill Collins [Thu, 25 Jul 2019 21:36:58 +0000 (22:36 +0100)]
bpo-37641 preserve relative file location in embeddable zip (GH-14884)
Previously, pyc files in the embeddable distribution reported their
location as <build path>/<file stem>.py. This causes a little confusion
when interpreting stack traces as the file is in a (almost certainly)
incorrect location, and lacks the full relative path to Lib (e.g.
email/mime/image.py will only show image.py).
This change preserves the Lib relative location of the source file as a
path so that stack traces are (hopefully) less misleading and more
informative.
Co-Authored-By: Kyle Stanley <aeros167@gmail.com>
Tzu-ping Chung [Thu, 25 Jul 2019 17:20:33 +0000 (01:20 +0800)]
Swap 'if' branches so content matches to condition in importlib example (GH-14947)
Prior to this change the guard on an 'elif' used an assignment expression whose value was used in a later 'else' block, causing some confusion for people.
(Discussion on Twitter: https://twitter.com/brettsky/status/
1153861041068994566.)
Automerge-Triggered-By: @brettcannon
Markus Mohrhard [Thu, 25 Jul 2019 16:00:34 +0000 (00:00 +0800)]
bpo-37502: handle default parameter for buffers argument of pickle.loads correctly (GH-14593)
Benjamin Peterson [Wed, 24 Jul 2019 23:38:50 +0000 (16:38 -0700)]
closes bpo-37675: Use pkgutil.iter_modules to find fixers in a package rather than listdir. (14942)
Steve Dower [Wed, 24 Jul 2019 22:13:22 +0000 (15:13 -0700)]
bpo-37672: Switch Windows Store package to use pip.ini for user mode (GH-14939)
Hansraj Das [Wed, 24 Jul 2019 20:31:19 +0000 (02:01 +0530)]
Remove duplicate call to strip method in Parser/pgen/token.py (GH-14938)
Pradyun Gedam [Wed, 24 Jul 2019 19:08:02 +0000 (00:38 +0530)]
bpo-37664: Update bundled pip to 19.2.1 and setuptools to 41.0.1 (GH-14934)
Stefan Behnel [Wed, 24 Jul 2019 18:22:50 +0000 (20:22 +0200)]
bpo-34160: explain how to deal with attribute order in ElementTree (GH-14867)
* Fix the formatting in the documentation of the tostring() functions.
* bpo-34160: Document that the tostring() and tostringlist() functions also preserve the attribute order now.
* bpo-34160: Add an explanation of how users should deal with the attribute order.
Stefan Behnel [Wed, 24 Jul 2019 18:08:02 +0000 (20:08 +0200)]
bpo-37399: Correctly attach tail text to the last element/comment/pi (GH-14856)
* bpo-37399: Correctly attach tail text to the last element/comment/pi, even when comments or pis are discarded.
Also fixes the insertion of PIs when "insert_pis=True" is configured for a TreeBuilder.
Jeroen Demeyer [Wed, 24 Jul 2019 12:02:49 +0000 (14:02 +0200)]
bpo-29548: deprecate PyEval_Call* functions (GH-14804)
Gregory P. Smith [Wed, 24 Jul 2019 05:28:48 +0000 (22:28 -0700)]
bpo-37667: Add regression test for regrtest. (GH-14929)
Verify that it appears to find roughly the right number of tests in the stdlib's testsuite.
Gregory P. Smith [Wed, 24 Jul 2019 04:33:48 +0000 (21:33 -0700)]
Only setup PGO tests when --pgo is enabled. (GH-14927)
Brett Cannon [Tue, 23 Jul 2019 21:34:32 +0000 (14:34 -0700)]
Touch up venv docs (GH-14922)
Terry Jan Reedy [Tue, 23 Jul 2019 20:14:59 +0000 (16:14 -0400)]
bpo-29446: IDLE -- add explicit imports (GH-14919)
Stop depending on tkinter import *.
Erlend Egeberg Aasland [Tue, 23 Jul 2019 16:11:50 +0000 (18:11 +0200)]
bpo-37653: Fix libinstall target in Makefile (GH-14911)
Tal Einat [Tue, 23 Jul 2019 12:22:11 +0000 (15:22 +0300)]
bpo-17535: IDLE editor line numbers (GH-14030)
Tal Einat [Tue, 23 Jul 2019 10:02:11 +0000 (13:02 +0300)]
bpo-33610: validate non-negative integer inputs in IDLE's config (GH-14822)
Neil Schemenauer [Mon, 22 Jul 2019 19:54:25 +0000 (12:54 -0700)]
bpo-36044: Reduce number of unit tests run for PGO build (GH-14702)
Reduce the number of unit tests run for the PGO generation task. This
speeds up the task by a factor of about 15x. Running the full unit test
suite is slow. This change may result in a slightly less optimized build
since not as many code branches will be executed. If you are willing to
wait for the much slower build, the old behavior can be restored using
'./configure [..] PROFILE_TASK="-m test --pgo-extended"'. We make no
guarantees as to which PGO task set produces a faster build. Users who
care should run their own relevant benchmarks as results can depend on
the environment, workload, and compiler tool chain.
Vinay Sajip [Mon, 22 Jul 2019 11:14:50 +0000 (12:14 +0100)]
Update logging cookbook to show multiple worker processes using the concurrent.futures module. (#14905)
Xtreak [Mon, 22 Jul 2019 07:38:22 +0000 (13:08 +0530)]
bpo-21478: Record calls to parent when autospecced objects are used as child with attach_mock (GH 14688)
* Clear name and parent of mock in autospecced objects used with attach_mock
* Add NEWS entry
* Fix reversed order of comparison
* Test child and standalone function calls
* Use a helper function extracting mock to avoid code duplication and refactor tests.
Raymond Hettinger [Sun, 21 Jul 2019 23:32:00 +0000 (16:32 -0700)]
Add examples to elucidate the formulas (GH-14898)
Terry Jan Reedy [Sun, 21 Jul 2019 20:26:24 +0000 (16:26 -0400)]
bpo-37627: Add acknowledgment (#14883)
Min ho Kim [Sun, 21 Jul 2019 20:12:33 +0000 (06:12 +1000)]
Fix typos in docs, comments and test assert messages (#14872)
Terry Jan Reedy [Sun, 21 Jul 2019 19:24:45 +0000 (15:24 -0400)]
Fix typo found by Min ho Kim (#14879)
Raymond Hettinger [Sun, 21 Jul 2019 19:13:07 +0000 (12:13 -0700)]
Minor whitespace, indentation, and quoting changes to improve internal consistency and appease linters (GH-14888)
Ned Deily [Sun, 21 Jul 2019 18:01:56 +0000 (20:01 +0200)]
Bpo-37644: update suspicious.csv for distutils/examples (GH-14885)
Ngalim Siregar [Sun, 21 Jul 2019 15:37:28 +0000 (22:37 +0700)]
bpo-37627: Initialize IDLE Custom Run dialog with previous entries (#14870)
Repeat the command line arguments most recently entered before so the user can edit them.
Raymond Hettinger [Sun, 21 Jul 2019 07:34:47 +0000 (00:34 -0700)]
bpo-36324: Make internal attributes for statistics.NormalDist() private. (GH-14871)
* Make internals private
* Finish making mu and sigma private
* Add missing __hash__() method
* Add blurb
Hai Shi [Sat, 20 Jul 2019 07:56:23 +0000 (02:56 -0500)]
bpo-37476: Adding tests for asutf8 and asutf8andsize (GH-14531)
Raymond Hettinger [Fri, 19 Jul 2019 08:57:22 +0000 (01:57 -0700)]
bpo-36546: Clean-up comments (GH-14857)
Raymond Hettinger [Fri, 19 Jul 2019 08:56:42 +0000 (01:56 -0700)]
bpo-37624: Document weight assumptions for random.choices() (GH-14855)
Zackery Spytz [Fri, 19 Jul 2019 06:07:06 +0000 (00:07 -0600)]
bpo-37547: Fix a compiler warning in winconsoleio.c (GH-14785)
The compiler warning was introduced in
59ad110d7a7784d53d0b502eebce0346597a6bef.