Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
c52cea4 [3.6] bpo-30822: Fix testing of datetime module. (GH-2530) (GH-2783) (#2816) * [3.6] bpo-30822: Fix testing of datetime module. (GH-2530) (GH-2783) Only C implementation was tested. (cherry picked from commit 287c5594edc1ca08db64d1f4739cc36bfe75ae75) * [3.6] bpo-30822: Fix testing of datetime module. (GH-2530) (GH-2783) Only C implementation was tested.. (cherry picked from commit 287c5594edc1ca08db64d1f4739cc36bfe75ae75) 26 July 2017, 11:49:16 UTC
0dbfab2 Add the link to asyncio source code in the docs (GH-2373) (GH-2884) (cherry picked from commit 627d2c8e8dc9cfe6c1cdfd9b34899eb30b600a88) 26 July 2017, 04:05:17 UTC
e42339d [3.6] bpo-30595: Fix multiprocessing.Queue.get(timeout) (#2027) (#2881) * bpo-30595: Fix multiprocessing.Queue.get(timeout) (#2027) multiprocessing.Queue.get() with a timeout now polls its reader in non-blocking mode if it succeeded to aquire the lock but the acquire took longer than the timeout. Co-Authored-By: Grzegorz Grzywacz <grzgrzgrz3@gmail.com> (cherry picked from commit 1b7863c3b6519c6e134c28cab8b8af0dea43e375) * bpo-30595: Increase test_queue_feeder_donot_stop_onexc() timeout (#2148) _test_multiprocessing.test_queue_feeder_donot_stop_onexc() now uses a timeout of 1 second on Queue.get(), instead of 0.1 second, for slow buildbots. (cherry picked from commit 8f6eeaf21cdf4aea25fdefeec814a1ce07453fe9) 26 July 2017, 03:38:22 UTC
a6f0452 bpo-30845: Enhance test_concurrent_futures cleanup (#2564) (#2880) * bpo-30845: reap_children() now logs warnings * bpo-30845: Enhance test_concurrent_futures cleanup In setUp() and tearDown() methods of test_concurrent_futures tests, make sure that tests don't leak threads nor processes. Clear explicitly the reference to the executor to make it that it's destroyed (to prevent "dangling threads" warning). (cherry picked from commit 3df9dec425b0254df1cdf41922fd8d6b08bf47e4) 26 July 2017, 03:05:09 UTC
d0adfb2 [3.6] bpo-26762, bpo-31019: Backport multiprocessing fixes from master to 3.6 (#2879) * bpo-26762: Avoid daemon process in _test_multiprocessing (#2842) test_level() of _test_multiprocessing._TestLogging now uses regular processes rather than daemon processes to prevent zombi processes (to not "leak" processes). (cherry picked from commit 06634950c553f8df83330ed468c11483b857b7dc) * test_multiprocessing: Fix dangling process/thread (#2850) bpo-26762: Fix more dangling processes and threads in test_multiprocessing: * Queue: call close() followed by join_thread() * Process: call join() or self.addCleanup(p.join) (cherry picked from commit d7e64d9934d86aa6173229de5af5fe908662a33a) * test_multiprocessing detects dangling per test case (#2841) bpo-26762: test_multiprocessing now detects dangling processes and threads per test case classes: * setUpClass()/tearDownClass() of mixin classes now check if multiprocessing.process._dangling or threading._dangling was modified to detect "dangling" processses and threads. * ManagerMixin.tearDownClass() now also emits a warning if it still has more than one active child process after 5 seconds. * tearDownModule() now checks for dangling processes and threads before sleep 500 ms. And it now only sleeps if there is a least one dangling process or thread. (cherry picked from commit ffb49408f0780ae80a553208aa133bc5bb3ba129) * bpo-26762: test_multiprocessing close more queues (#2855) * Close explicitly queues to make sure that we don't leave dangling threads * test_queue_in_process(): remove unused queue * test_access() joins also the process to fix a random warning (cherry picked from commit b4c52966c810b5c5e088fceff403247f610b7d13) * bpo-31019: Fix multiprocessing.Process.is_alive() (#2875) multiprocessing.Process.is_alive() now removes the process from the _children set if the process completed. The change prevents leaking "dangling" processes. (cherry picked from commit 2db64823c20538a6cfc6033661fab5711d2d4585) 26 July 2017, 02:48:56 UTC
efe9fcb bpo-31034: Reliable signal handler for test_asyncio (#2867) (#2876) * bpo-31034: Reliable signal handler for test_asyncio Don't rely on the current SIGHUP signal handler, make sure that it's set to the "default" signal handler: SIG_DFL. * Add comments (cherry picked from commit 830080913c22a9834d310294b9f7653234dc6a59) 26 July 2017, 00:33:47 UTC
59e6ab1 bpo-26506: hex() documentation: mention %x % int (GH-2525) (GH-2870) (cherry picked from commit 67ba4fa467ffff825d6a0c0a21cc54ff1df2ed1b) 25 July 2017, 18:04:08 UTC
d8b5216 [3.6] bpo-31018: Switch to GH-pragma pack from __declspec(align) (GH-2848) (#2868) (cherry picked from commit 39243779f4c97ec6f700fa73c007ca66dfa9408e) 25 July 2017, 17:20:38 UTC
548a688 [3.6] Minor typo in curses.rst (GH-2763) (#2853) I found a tiny typo in the curses how-to: changed 'Thy' to 'The' on line 68. (cherry picked from commit d439d3e) 24 July 2017, 22:54:53 UTC
bb33ccf bpo-30908: Fix dangling thread in test_os.TestSendfile (#2680) (#2844) tearDown() now clears explicitly the self.server variable to make sure that the thread is completely cleared when tearDownClass() checks if all threads have been cleaned up. Fix the following warning: $ ./python -m test --fail-env-changed -m test.test_os.TestSendfile.test_keywords -R 3:1 test_os (...) Warning -- threading_cleanup() failed to cleanup 0 threads after 3 sec (count: 0, dangling: 2) (...) Tests result: ENV CHANGED (cherry picked from commit d1cc037d1442cc35d1b194ec8e50901514360949) 24 July 2017, 15:40:50 UTC
1daeb25 [3.6] bpo-30993: IDLE - Improve configdialog font page and tests. (GH-2831) (#2834) In configdialog: Document causal pathways in create_font_tab docstring. Simplify some attribute names. Move set_samples calls to var_changed_font (idea from Cheryl Sabella). Move related functions to positions after the create widgets function. In test_configdialog: Fix test_font_set so not order dependent. Fix renamed test_indent_scale so it tests the widget. Adjust tests for movement of set_samples call. Add tests for load functions. Put all font tests in one class and tab indent tests in another. Except for two lines, these tests completely cover the related functions. (cherry picked from commit 77e97ca) 24 July 2017, 06:50:28 UTC
f76d1a0 Mac installer build now needs venv for docs build (#2828) (#2830) (cherry picked from commit 4c7532e96da19f2d5543bdab2b972797699c37d5) 23 July 2017, 21:10:40 UTC
5aa3bf0 [3.6] bpo-30993: IDLE - Improve configdialog font page and tests. (GH-2818) (#2826) * Document causal event pathways in docstring. * Simplify some attribute names. * Rename test_bold_toggle_set_samples to make test_font_set fail. * Fix test_font_set so not order dependent. * Fix renamed test_indent_scale so it tests the widget. (cherry picked from commit 07ba305) 23 July 2017, 18:18:27 UTC
8de48fe [3.6] Make test_shutil test_disk_usage not depend on the cwd fs (GH-2597) (#2820) Make test_shutil test_disk_usage not depend on the current working directory's filesystem. (cherry picked from commit 529746c90584069270cd122920270bd7be38bca3) 23 July 2017, 06:00:39 UTC
04864b4 [3.6] bpo-30981: IDLE -- Add more configdialog font page tests. (GH-… (#2796) Verify that clicking the bold checkbutton and calling its command, set_samples, changes the bold setting of both samples. Simplify some names in configdialog. (cherry picked from commit d0969d6) (Incorporates changes and fixes from PRs 2798, 7c5798e, and 2810, 616ecf1) * Fix broken test with PR2798 and PR2810 changes. 22 July 2017, 04:56:18 UTC
64b9a15 [3.6] bpo-29403: Fix mock's broken autospec behavior on method-bound builtin functions (GH-3) Cython will, in the right circumstances, offer a MethodType instance where im_func is a builtin function. Any instance of MethodType is automatically assumed to be a Python-defined function (more specifically, a function that has an inspectable signature), but _set_signature was still conservative in its assumptions. As a result _set_signature would return early with None instead of a mock since the im_func had no inspectable signature. This causes problems deeper inside mock, as _set_signature is assumed to _always_ return a mock, and nothing checked its return value. In similar corner cases, autospec will simply not check the spec of the function, so _set_signature is amended to now return early with the original, not-wrapped mock object. Patch by Aaron Gallagher. (cherry picked from commit 856cbcc12f2e4cca93af5dc7ed6bcea4dd942f10) 21 July 2017, 22:31:04 UTC
bb323b2 bpo-30891: Fix again importlib _find_and_load() (#2665) (#2801) Use sys.modules.get() in the "with _ModuleLockManager(name):" block to protect the dictionary key with the module lock and use an atomic get to prevent race condition. Remove also _bootstrap._POPULATE since it was unused (_bootstrap_external now has its own _POPULATE object), add a new _SENTINEL object instead. (cherry picked from commit e72b1359f81d1dd42bd8a5c5cc2b3928b74f8023) 21 July 2017, 11:28:55 UTC
df5837b [3.6] bpo-30964: Mention ensurepip in package installation docs (GH-2797) Adds a new 'Pip not installed' section that covers running `ensurepip` manually, and also references the relevant section of the Python Packaging User Guide. (cherry picked from commit b3527bfefd7a0188d43a2d7515ac6addd97a8202) 21 July 2017, 06:44:43 UTC
ac5c1e2 [3.6] bpo-28523: IDLE: Use 'color' instead of 'colour'. (GH-2787) (#2791) (cherry picked from commit a54a8f1) 21 July 2017, 05:29:09 UTC
ef4231a bpo-30466: Add brief explanation of classes to tutorial (GH-1804) (GH-2700) 21 July 2017, 03:10:54 UTC
96ef06f bpo-30822: Exclude tzdata from regrtest --all (#2775) (#2777) When running the test suite using --use=all / -u all, exclude tzdata since it makes test_datetime too slow (15-20 min on some buildbots) which then times out on some buildbots. -u tzdata must now be enabled explicitly, -u tzdata or -u all,tzdata, to run all test_datetime tests. Fix also regrtest command line parser to allow passing -u extralargefile to run test_zipfile64. Travis CI: remove -tzdata. Replace -u all,-tzdata,-cpu with -u all,-cpu since tzdata is now excluded from -u all. (cherry picked from commit 5b392bbaeb9d9b1db961ecfc7315d8c8662c27f6) 20 July 2017, 15:08:48 UTC
7f58994 [3.6] Fix typo in Turtle Docs: yingyang -> yinyang (GH-2770) (GH-2778) (cherry picked from commit fff2a21057b98732562098e3bdd65980551f0135) 20 July 2017, 14:14:05 UTC
e0d306f Update doc download files size estimates. (#2771) (#2772) 20 July 2017, 08:19:22 UTC
65c24c8 [3.6] bpo-30917: IDLE: Add config.IdleConf unittests (GH-2691) (#2753) Patch by Louie Lu. (cherry picked from commit f776eb0) (includes diffs of ed014f7 and 9f9192a) * fix config reset from pr 2754 * Fix test_get_font (from pr 2769) 20 July 2017, 05:23:00 UTC
ae4dca7 [3.6] bpo-30883: Use pythontest.net instead of debian.org in test_urllib2net (GH-2755) 20 July 2017, 00:21:09 UTC
e99d3a5 [3.6] bpo-30450: Improved logic for obtaining dependencies (#2751) Adds alternate download approach for nuget.exe Fall back to git.exe if no Python is found. (#2739) Also check whether git.exe is on PATH if it will be used. Add support for HOST_PYTHON variable. Clear internal environment variables used in find_python.bat Use HOST_PYTHON as the actual Python if it is recent enough. Adds HOST_PYTHON variable to AppVeyor configuration 19 July 2017, 07:11:08 UTC
241c4a2 bpo-30961: Fix decrementing a borrowed reference in tracemalloc. (#2747) (#2748) (cherry picked from commit 4ed5ad79ec6c6270e6018bd0a55656305ee60907) 18 July 2017, 16:50:52 UTC
8663c45 Also bump README.rst 17 July 2017, 04:59:03 UTC
a61089f Bump to v3.6.2+ 17 July 2017, 04:54:03 UTC
05217f2 Merge tag 'v3.6.2' into 3.6 Version v3.6.2 17 July 2017, 04:42:07 UTC
a819e5e [3.6] bpo-30936: Fix a reference leak in json when fail to sort keys. (GH-2712). (#2727) (cherry picked from commit 49f6449ef4b81537c19b82329caaf60596c516c2) 16 July 2017, 04:48:08 UTC
28343e3 [3.6] bpo-30876: Relative import from unloaded package now reimports the package (GH-2639) (#2676) instead of failing with SystemError. Relative import from non-package now fails with ImportError rather than SystemError. (cherry picked from commit 8a9cd20edca7d01b68292036029ae3735ce65edd) 16 July 2017, 04:44:25 UTC
65de1f3 [3.6] bpo-30934: Document coverage details for idlelib tests (GH-2711) (#2726) * Add section to idlelib/idle-test/README.txt. * Include check that branches are taken both ways. * Exclude IDLE-specific code that does not run during unit tests. (cherry picked from commit 95bebb7) 16 July 2017, 04:39:59 UTC
bbd0f42 bpo-30939: Avoid Sphinx deprecation warning in docs build. (#2721) (#2722) (cherry picked from commit 50f58163a69abe2f35e91044d1df165ee7bdbb42) 15 July 2017, 20:56:13 UTC
ea9cbe0 Doc that 'sorted' args are keyword-only, fix 'reverse' default (#2709) backport 14 July 2017, 19:57:19 UTC
1aafd9c [3.6] Update idlelib/NEWS.txt. (GH-2703) (#2704) (cherry picked from commit 0d0a32f) 14 July 2017, 04:29:05 UTC
9a09c66 [3.6] bpo-30913: IDLE: Document tk vars, attributes, and methods for ConfigDialog (GH-2697) (#2702) The will help writing dialog improvements and splitting the class into multiple classes. Original patch by Cheryl Sabella. (cherry picked from commit 36329a4) 14 July 2017, 03:53:30 UTC
42abf7f [3.6] bpo-30870: IDLE: Add configdialog fontlist selection unittest (GH-2666) (#2701) Initial patch by Louie Lu. (cherry picked from commit 9b622fb) 14 July 2017, 02:24:55 UTC
d8e522f bpo-30731: python.manifest fix (#2328) (#2699) bpo-30731: python.manifest fix 13 July 2017, 19:51:50 UTC
7d0a995 [3.6] bpo-30911: Add tests for bad boolean arguments for accelerated json (GH-2690) (#2692) encoder and decoder. (cherry picked from commit d3aaa2f) 13 July 2017, 08:40:25 UTC
a9bf62c [3.6] bpo-30899: Add unittests, 100% coverage, for IDLE's two ConfigParser subclasses. (GH-2662) (#2685) Patch by Louie Lu. (cherry picked from commit 50c9435) 12 July 2017, 18:42:37 UTC
c017948 [3.6] bpo-30779: IDLE: fix changes.delete_section calls in configdialog (GH-2667) (#2674) Also improve test of config.ConfigChanges.delete_section. Original patch by Cheryl Sabella. (cherry picked from commit 6d13b22) 11 July 2017, 23:50:10 UTC
675c1ad [3.6] bpo-30881: IDLE: add docstrings to browser.py (GH-2638) (#2663) Patch by Cheryl Sabella. (cherry picked from commit ba35227) 11 July 2017, 06:53:32 UTC
953e527 [3.6] bpo-30870: IDLE -- fix logic error in eae2537. (GH-2660) (#2661) (cherry picked from commit 5b62b35) 11 July 2017, 06:16:41 UTC
82a9075 [3.6] bpo-22207: Add checks for possible integer overflows in unicodeobject.c. (GH-2623) (#2658) Based on patch by Victor Stinner. (cherry picked from commit 64e461b) 11 July 2017, 04:27:56 UTC
ecfe4f6 [3.6] bpo-30879: os.listdir() and os.scandir() now emit bytes names when (GH-2634) (#2656) called with bytes-like argument.. (cherry picked from commit 1180e5a51871fa53ca6892e83fd2e69dc2600447) 11 July 2017, 04:16:11 UTC
fe6e686 bpo-30891: Fix importlib _find_and_load() race condition (#2646) (#2651) * Rewrite importlib _get_module_lock(): it is now responsible to hold the imp lock directly. * _find_and_load() now holds the module lock to check if name is in sys.modules to prevent a race condition (cherry picked from commit 4f9a446f3fb42f800e73cd9414dd1eccb3ca4fa7) 10 July 2017, 21:16:27 UTC
044e156 bpo-30892: Fix _elementtree module initialization (#2647) (#2649) Handle getattr(copy, 'deepcopy') error in _elementtree module initialization. (cherry picked from commit b136f11f3a51f9282ae992bac68f170ca5563b55) 10 July 2017, 21:12:37 UTC
8e3f73e [3.6] bpo-30851: IDLE: Remove unused tk variables in configdialog. (GH-2626) (#2648) One is a duplicate, one is set but cannot be altered by users. Patch by Cheryl Sabella. (cherry picked from commit aa8d0a2) 10 July 2017, 19:11:45 UTC
7f3d65d bpo-30886: Fix multiprocessing.Queue.join_thread() (#2642) (#2643) multiprocessing.Queue.join_thread() now waits until the thread completes, even if the thread was started by the same process which created the queue. Fix the following warning which occurs randomly when running test_handle_called_with_mp_queue of test_logging.QueueListenerTest: Warning -- threading_cleanup() failed to cleanup -1 threads after 4 sec (count: 0, dangling: 1) (cherry picked from commit 3b69d911c57ef591ac0c0f47a66dbcad8337f33a) 10 July 2017, 11:43:20 UTC
7ab3342 [3.6] bpo-30870: IDLE: Change sample font when select by key-up/down (GH-2617) (#2640) Patch by Louie Lu. (cherry picked from commit bb2bae8) 09 July 2017, 23:26:32 UTC
04f77d4 [3.6] bpo-29854: Fix segfault in call_readline() (GH-728) If history-length is set in .inputrc, and the history file is double the history size (or more), history_get(N) returns NULL, and python segfaults. Fix that by checking for NULL return value. It seems that the root cause is incorrect handling of bigger history in readline, but Python should not segfault even if readline returns unexpected value. This issue affects only GNU readline. When using libedit emulation system history size option does not work. 08 July 2017, 18:51:21 UTC
03e0df6 Update for post-3.6.2rc2 08 July 2017, 04:49:40 UTC
b79d58e Merge tag 'v3.6.2rc2' into 3.6 Tag v3.6.2rc2 08 July 2017, 04:41:30 UTC
5fd33b5 Version bump to 3.6.2final 08 July 2017, 03:33:27 UTC
552f266 [3.6] bpo-8231: Call idlelib.IdleConf.GetUserCfgDir only once. (GH-2629) (#2631) (cherry picked from commit 223c7e7) 08 July 2017, 02:47:37 UTC
9d8abf3 [3.6] bpo-30779: News (GH-2627) (#2630) (cherry picked from commit 24f2e19) 08 July 2017, 02:26:53 UTC
edc0342 [3.6] bpo-30779: IDLE -- Factor ConfigChanges class from configdialog, put in config; test. (GH-2612) (#2625) * In config, put dump test code in a function; run it and unittest in 'if __name__ == '__main__'. * Add class config.ConfigChanges based on changes_class_v4.py on bpo issue. * Add class test_config.ChangesTest, partly based on configdialog_tests_v1.py on bpo issue. * Revise configdialog to use ConfigChanges, mostly as specified in tracker msg297804. * Revise test_configdialog to match configdialog changes. All tests pass in both files. * Remove configdialog functions unused or moved to ConfigChanges. Cheryl Sabella contributed parts of the patch. (cherry picked from commit 349abd9) 07 July 2017, 20:37:39 UTC
8913311 Version bump to 3.6.2rc2 07 July 2017, 07:16:00 UTC
bdabd76 bpo-30797, bpo-30694: Avoid _GNU_SOURCE redefined warning in xmlparse.c (#2615) (cherry picked from commit 05b72ede95521b2d897cb4c7b034139b5437c592) 07 July 2017, 05:59:14 UTC
05b72ed bpo-30797, bpo-30694: Avoid _GNU_SOURCE redefined warning in xmlparse.c (#2615) 07 July 2017, 05:31:43 UTC
d1d6501 [3.6] bpo-30745: Fix compiler warnings introduced in bpo-30730. (GH-2376) (#2378) (cherry picked from commit 0ee32c1) (cherry picked from commit 0e1f9e8d3ea82262cbb9a403b70a884da5e6a6ac) 07 July 2017, 03:51:12 UTC
a9b16cf [3.6] bpo-30730: Prevent environment variables injection in subprocess on Windows. (GH-2325) (#2360) Prevent passing other invalid environment variables and command arguments.. (cherry picked from commit d174d24a5d37d1516b885dc7c82f71ecd5930700) (cherry picked from commit e7135751b8e48af80665e40ac8fa6d0073e5affe) 07 July 2017, 03:48:43 UTC
c794b64 bpo-30704, bpo-30604: Fix memleak in code_dealloc() (#2455) (#2456) Free also co_extra->ce_extras, not only co_extra. (cherry picked from commit 23e7944eba1968bb8432fdc4cc96d4fdd2c1a230) (cherry picked from commit 26daad4ee14693381d84a5235709d22aed1c22ed) 07 July 2017, 03:45:50 UTC
b6012f9 [3.6] bpo-30726: Also fix pyexpat.vcxproj (GH-2375) (#2570) (cherry picked from commit 7526cadd64566725ffc56071a7208828a46ddbd8) (cherry picked from commit d02c8416fe1b29b3322004b73133bf6c8a2e353a) 07 July 2017, 03:42:49 UTC
5777e79 [3.6] bpo-30726: PCbuild _elementtree: remove duplicate defines (#2348) (#2349) * bpo-30726: PCbuild _elementtree: remove duplicate defines (#2348) bpo-30726, bpo-29591: libexpat 2.2.1 of Modules/expat/ now uses a winconfig.h configuration file which already defines: * XML_NS * XML_DTD * BYTEORDER=1234 * XML_CONTEXT_BYTES=1024 * HAVE_MEMMOVE Remove these defines from PCbuild/_elementtree.vcxproj to prevent compiler warnings. Co-Authored-By: Jeremy Kloth <jeremy.kloth@gmail.com> (cherry picked from commit c8fb58bd7917151e63398587a7fc2126db7c26de) * bpo-30726: Fix elementtree warnings on Windows due to expat upgrade (#2319) * bpo-30726: Fix elementtree warnings on Windows Caused by usage of `getenv` which should be safe. And a few integer truncations which should also be ok. * bpo-30726: Don't ignore libexpat warnings which haypo intends to fix upstream (cherry picked from commit 87c65550730a8f85ce339ba197bce4fb7e836619) (cherry picked from commit d32a05953130fb5cc2d3c0c9fcb20ad0859353f3) 07 July 2017, 03:41:35 UTC
ea1ab80 bpo-30694: Upgrade Modules/expat/ to libexpat 2.2.1 (#2300) (#2313) New file: Modules/expat/siphash.h. (cherry picked from commit 5ff7132313eb651107b179d20218dfe5d4e47f13) (cherry picked from commit 4a66524006852fc982aebafa277f2c043d9ad149) 07 July 2017, 03:37:10 UTC
b0fba88 bpo-30500: urllib: Simplify splithost by calling into urlparse. (#1849) (#2289) The current regex based splitting produces a wrong result. For example:: http://abc#@def Web browsers parse that URL as ``http://abc/#@def``, that is, the host is ``abc``, the path is ``/``, and the fragment is ``#@def``. (cherry picked from commit 90e01e50ef8a9e6c91f30d965563c378a4ad26de) (cherry picked from commit 536c1f1246f4faa302f9f5613fc3444e7ae09b4a) 07 July 2017, 03:27:01 UTC
00134f6 bpo-30687: Fixes build scripts to find msbuild.exe and stop relying on vcvarsall.bat (#2252) (#2280) * Fixes build scripts to find msbuild.exe and stop relying on vcvarsall.bat Also fixes bdist_wininst.vcxproj to use correct version in generated name. (cherry picked from commit 06d6e3d0bb5b8a3d3105289034953a8014356a0b) 07 July 2017, 03:19:09 UTC
df0f993 [3.6] bpo-30780: Fix error in idlelib.test_idle.test_configdialog (GH-2606) (#2613) (cherry picked from commit 25a4206) 07 July 2017, 03:16:31 UTC
c60d2f5 bpo-30532: Fix whitespace folding in certain cases (#2591) Leading whitespace was incorrectly dropped during folding of certain lines in the _header_value_parser's folding algorithm. This makes the whitespace handling code consistent. 06 July 2017, 21:28:22 UTC
5d2550c [3.6] Fix case in .gitignore (GH-2607) (GH-2608) (cherry picked from commit be5ebe58776a02d53bcf5e43ab946b555c0e025f) 06 July 2017, 21:08:29 UTC
d012648 [3.6] Update idlelib/NEWS.txt with merges upto 2017 Jul 5. (GH-2595) (#2596) (cherry picked from commit 1ccbad9c95cf5782a1329eeaecba6e3eb0c37cb8) 06 July 2017, 19:29:35 UTC
03b0e83 [3.6] bpo-30814: Fixed a race condition when import a submodule from a package. (GH-2580). (#2598) (cherry picked from commit b4baacee1adc06edbe30ac7574d17a8cd168e2e0) 06 July 2017, 05:38:24 UTC
aaa4f99 [3.6] bpo-30828: Fix out of bounds write in `asyncio.CFuture.remove_done_callback() (GH-2569) (#2590) (cherry picked from commit 833a3b0d3707200daeaccdd218e8f18a190284aa) 05 July 2017, 18:03:10 UTC
e3a0ff0 [3.6] bpo-30854: Fix compile error when --without-threads (GH-2581) (#2583) * bpo-30854: Fix compile error when --without-threads * bpo-30854: fix news (cherry picked from commit 0c3116309307ad2c7f8e2d2096612f4ab33cbb62) 05 July 2017, 09:24:46 UTC
0884c40 [3.6] NEWS for 30777 (GH-2576) (#2579) (cherry picked from commit aaa917f) 05 July 2017, 04:55:59 UTC
1278d29 [3.6] bpo-21624: IDLE -- minor htest fixes (GH-2575) (#2578) (cherry picked from commit 2000150) 05 July 2017, 04:55:29 UTC
e5bb112 [3.6] bpo-30777: IDLE: configdialog - add docstrings and improve comments (GH-2440) (#2577) Patch by Cheryl Sabella. (cherry picked from commit 7eb5883) 05 July 2017, 04:54:55 UTC
d02c841 [3.6] bpo-30726: Also fix pyexpat.vcxproj (GH-2375) (#2570) (cherry picked from commit 7526cadd64566725ffc56071a7208828a46ddbd8) 04 July 2017, 18:38:47 UTC
580cd5c bpo-30319: socket.close() now ignores ECONNRESET (#2565) (#2566) socket.close() was modified in Python 3.6 to raise OSError on failure: see bpo-26685. (cherry picked from commit 67e1478dba6efe60b8e1890192014b8b06dd6bd9) 04 July 2017, 14:46:10 UTC
23e2c3d Remove outdated FOX from GUI FAQ (GH-2538) FXpy doesn't have a Python 3 port and it only supports Python 2.2 and older versions. Reported by Alex Walters on docs@p.o. (cherry picked from commit d3ed2877a798d07df75422afe136b4727e500c99) 04 July 2017, 06:27:35 UTC
bebd2cf [3.6] bpo-30441: Fix bug when modifying os.environ while iterating over it (GH-2409). (#2556) (cherry picked from commit 8a8d28501fc8ce25926d168f1c657656c809fd4c) 04 July 2017, 04:55:32 UTC
4132adb bpo-30764: Fix regrtest --fail-env-changed --forever (#2536) (#2539) --forever now stops if a fail changes the environment. (cherry picked from commit 5e87592fd12e0b7c41edc11d4885ed7298d5063b) 03 July 2017, 10:50:36 UTC
bfdc6fd [3.6] bpo-30597: Show expected input in custom 'print' error message. (GH-2531) (cherry picked from commit 3a7f03584ab75afbf5507970711c87042e423bb4) 03 July 2017, 07:49:50 UTC
03af428 [3.6] bpo-29933: Improve set_write_buffer_limits description (GH-2262) (GH-2532) Improve the description of the high and low parameters for set_write_buffer_limits. Also fixed a small grammatical issue. (cherry picked from commit 5200a7c7f9ea65a96330c5f276f4acc6ec70854e) 02 July 2017, 02:48:07 UTC
3024c05 [3.6] bpo-30703: Improve signal delivery (GH-2415) (#2527) * [3.6] bpo-30703: Improve signal delivery (GH-2415) * Improve signal delivery Avoid using Py_AddPendingCall from signal handler, to avoid calling signal-unsafe functions. * Remove unused function * Improve comments * Add stress test * Adapt for --without-threads * Add second stress test * Add NEWS blurb * Address comments @haypo. (cherry picked from commit c08177a1ccad2ed0d50898c2731b518c631aed14) * bpo-30796: Fix failures in signal delivery stress test (#2488) * bpo-30796: Fix failures in signal delivery stress test setitimer() can have a poor minimum resolution on some machines, this would make the test reach its deadline (and a stray signal could then kill a subsequent test). * Make sure to clear the itimer after the test 01 July 2017, 17:12:05 UTC
48290c1 [3.6] Fix trivial typo in json module docstring (GH-2274) (#2430) (cherry picked from commit 76c567ee27342d76f631a35c8291b715b2a61f3e) 01 July 2017, 01:15:18 UTC
a3ca94d [3.6] bpo-29512, bpo-30776: Backport regrtest enhancements from master to 3.6 (#2513) * bpo-29512: Add test.bisect, bisect failing tests (#2452) Add a new "python3 -m test.bisect" tool to bisect failing tests. It can be used to find which test method(s) leak references, leak files, etc. (cherry picked from commit 84d9d14a1fa395fbd21262ba195490be25a7b3bc) * bpo-30776: regrtest: reduce memleak false positive (#2484) Only report a leak if each run leaks at least one memory block. (cherry picked from commit beeca6e1e5fd01531b1db7059498b13d07dca525) 30 June 2017, 15:31:16 UTC
23caf8c bpo-30280: Cleanup threads in ayncio tests (#2501) (#2511) * bpo-30280: asyncio now cleans up threads asyncio base TestCase now uses threading_setup() and threading_cleanup() of test.support to cleanup threads. * asyncio: Fix TestBaseSelectorEventLoop cleanup bpo-30280: TestBaseSelectorEventLoop of test.test_asyncio.test_selector_events now correctly closes the event loop: cleanup its executor to not leak threads. Don't override the close() method of the event loop, only override the_close_self_pipe() method. (cherry picked from commit b9030674624c181d6e9047cdb14ad65bb6c84c66) 30 June 2017, 15:20:33 UTC
22d4e8f bpo-30813: Fix unittest when hunting refleaks (#2502) (#2505) bpo-11798, bpo-16662, bpo-16935, bpo-30813: Skip test_discover_with_module_that_raises_SkipTest_on_import() and test_discover_with_init_module_that_raises_SkipTest_on_import() of test_unittest when hunting reference leaks using regrtest. (cherry picked from commit e4f9a2d2be42d5a2cdd624f8ed7cdf5028c5fbc3) 30 June 2017, 11:12:20 UTC
d0aac5d bpo-30812: Fix test_warnings, restore _showwarnmsg (#2504) (#2507) bpo-26568, bpo-30812: Fix test_showwarnmsg_missing(): restore the attribute after removing it. (cherry picked from commit 7eebeb8fb84e2a9cb73903a08c59cf1d3b32cee0) 30 June 2017, 11:12:12 UTC
6f3cb05 [3.6] bpo-30807: signal.setitimer() may disable the timer by mistake (GH-2493) (#2497) * bpo-30807: signal.setitimer() may disable the timer by mistake * Add NEWS blurb (cherry picked from commit 729780a810bbcb12b245a1b652302a601fc9f6fd) 30 June 2017, 08:54:24 UTC
6f31717 [3.6] bpo-30495: IDLE: improve textview with docstrings, PEP8 names, more tests. (GH-2283) (#2496) Split TextViewer class into ViewWindow, ViewFrame, and TextFrame classes so that instances of the latter two can be placed with other widgets within a multiframe window. Patch by Cheryl Sabella. (cherry picked from commit 42bc8be) 29 June 2017, 23:15:18 UTC
1d56ed5 _winconsoleio: Fix memory leak (#2485) Fix memory leak when _winconsoleio tries to open a non-console file: free the name buffer. 29 June 2017, 08:53:34 UTC
b78fbaa bpo-30602: Fix refleak in os.spawnv() (#2212) (#2486) When os.spawnv() fails while handling arguments, free correctly argvlist: pass lastarg+1 rather than lastarg to free_string_array() to also free the first item. (cherry picked from commit 8acb4cf2b3436652568d7a70228b166316181466) 29 June 2017, 08:53:22 UTC
38d6a40 [3.6] Clear potential ref cycle between Process and Process target (GH-2470) (#2471) * Clear potential ref cycle between Process and Process target Besides Process.join() not being called, this was an indirect cause of bpo-30775. The threading module already does this. * Add issue reference. (cherry picked from commit 79d37ae979a65ada0b2ac820279ccc3b1cd41ba6) 28 June 2017, 11:08:20 UTC
e022aad [3.6] bpo-30775: Fix refleaks in test_multiprocessing (GH-2467) (#2468) Forgetting to call Process.join() can keep some resources alive. (cherry picked from commit a79f8faccf5e26f55e8b9496ad49d2071b5e299c) 28 June 2017, 09:49:38 UTC
0834905 [3.6] bpo-13617: Reject embedded null characters in wchar* strings. (GH-2302) (#2462) Based on patch by Victor Stinner. Add private C API function _PyUnicode_AsUnicode() which is similar to PyUnicode_AsUnicode(), but checks for null characters.. (cherry picked from commit f7eae0adfcd4c50034281b2c69f461b43b68db84) 28 June 2017, 06:27:35 UTC
413c0a9 [3.6] bpo-24813: IDLE tagline is Integrated Development and Learning Environment (GH-2451) (#2461) Patch by Mark Roseman (cherry picked from commit 592eda1) 28 June 2017, 03:02:38 UTC
back to top