- 14 Jun, 2017 8 commits
-
-
Milan Oberkirch authored
bpo-30436: Raise ModuleNotFoundError for importlib.util.find_spec() when parent isn't a package (GH-1899) Previously AttributeError was raised, but that's not very reflective of the fact that the requested module can't be found since the specified parent isn't actually a package.
-
terryjreedy authored
Before, <return> would not, for instance, complete 're.c' to 're.compile' even with 'compile' highlighted. Now it does. Before, <return> was inserted into text, which in Shell meant compile() and possibly execute. Now cursor is left after completion.
-
Victor Stinner authored
The public cyrus.andrew.cmu.edu IMAP server (port 993) doesn't accept TLS connection using our self-signed x509 certificate. Remove the two tests which are already skipped. Write a new test_certfile_arg_warn() unit test for the certfile deprecation warning.
-
mlouielu authored
The root problem was non-check for hide_event. When user clicks on autocomplete window (acw), root widget gets focusOut event, then triggers hide_window to close the acw. It should only be hide when acw is active, and acw didn't get focus at FocusOut event (this event bind on acw and widget), or when widget get a ButtonPress event (this event only bind on widget). MacOS froze after double click on acw because when doubleclick_event try to hide window at the end, hide_window function destory whole acw, but tkinter didn't get focus back to widget. So set focus on widget first, then destory acw. Windows could not respond on double click event, because of the misbehavior of Configure event. When acw was shown, tkinter called winconfig event multiple times. That caused tkinter to not response to double click event. When on Windows, unbind Configure event first time get into winconfig_event to prevent multiple call of this event.
-
csabella authored
Replace platform with platforms.
-
Victor Stinner authored
When os.spawnve() fails while handling arguments, free correctly argvlist: pass lastarg+1 rather than lastarg to free_string_array() to also free the first item.
-
Victor Stinner authored
PPC64 Fedora 3.x buildbot requires at least a delta of 14 ms: revert the utime delta to 20 ms. I tried 10 ms, but test_os failed on the PPC64 Fedora 3.x buildbot.
-
terryjreedy authored
When IDLE fail to start because the socket connection fails, direct people to a new subsection of the IDLE doc listing various causes and remedies.
-
- 13 Jun, 2017 18 commits
-
-
Victor Stinner authored
_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.
-
Victor Stinner authored
On Windows, tolerate a delta of 50 ms instead of 20 ms in test_utime_current() and test_utime_current_old() of test_os. On other platforms, reduce the delta from 20 ms to 10 ms.
-
Ben Hoyt authored
-
Jonathan Eunice authored
-
terryjreedy authored
For unknown reasons, this does not work when running leak tests.
-
Emily Morehouse authored
`PyModule_New()` now refers to `PyModule_NewObject()`
-
Sanyam Khurana authored
bpo-24744: Raise error in pkgutil.walk_packages if path is str Previously an empty result list was accidentallly returned, since the code iterated over the string as if it were the expected list of paths, and of course found nothing.
-
Antoine Pitrou authored
* bpo-24484: Avoid race condition in multiprocessing cleanup The finalizer registry can be mutated while inspected by multiprocessing at process exit. * Use test.support.start_threads() * Add Misc/NEWS
-
terryjreedy authored
-
messi Liao authored
-
Nick Coghlan authored
-
mlouielu authored
Patch by Louie Lu.
-
Victor Stinner authored
When checking for reference leaks, test_c_locale_coercion is run multiple times and so _LocaleCoercionTargetsTestCase.setUpClass() is called multiple times. setUpClass() appends new value at each call, so it looks like a reference leak. Moving the setup from setUpClass() to setUpModule() avoids this, eliminating the false alarm.
-
Victor Stinner authored
Don't run Python in an empty environment, but copy the current environment and set PYTHONIOENCODING. So the test works also on Python compiled in shared mode (using libpython).
-
Antoine Pitrou authored
-
Antoine Pitrou authored
* Fix race condition in signal wakeup in forkserver (followup to PR #1989) There's an admittedly well-known race condition where ECHILD can arrive just before the C function epoll_wait() and the latter wouldn't therefore return EINTR. The solution is to use set_wakeup_fd(), which was designed to avoid such race conditions. * Reset wakeup fd in child
-
Andrew Kuchling authored
Move up the discussion about 'with' keyword, so it appears earlier in the document.
-
Stéphane Wirtel authored
-
- 12 Jun, 2017 7 commits
-
-
Antoine Pietri authored
-
Antoine Pitrou authored
* Fix bpo-30589: improve Process.exitcode with forkserver When the child is killed, Process.exitcode should return -signum, not 255. * Add Misc/NEWS
-
Giampaolo Rodola authored
bpo-30624 / selectors: use bare 'except' clause instead of 'except Exception'
-
Stéphane Wirtel authored
-
mircea-cosbuc authored
If max_line_length=None is specified while using the Compat32 policy, it is no longer ignored.
-
Serhiy Storchaka authored
The traceback no longer displayed for SystemExit raised in a callback registered by atexit.
-
suketa authored
import json before using json module
-
- 11 Jun, 2017 7 commits
-
-
Yury Selivanov authored
Revert "bpo-29406: asyncio SSL contexts leak sockets after calling close with certain servers (#409)" (#2111) This reverts commit a608d2d5.
-
Yury Selivanov authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
The depth argument limits recursion.
-
Benjamin Peterson authored
-
Benjamin Peterson authored
SSLObject has recv() and send(), but they don't do any network io.
-
Zachary Ware authored
Also fixed a few more line endings that were missed in GH-840, which were causing failure.
-