- 25 Haz, 2018 1 kayıt (commit)
-
-
Dong-hee Na yazdı
-
- 24 Haz, 2018 4 kayıt (commit)
-
-
Tal Einat yazdı
This avoids a failure in at least one case when running only a single test method rather than all tests in the module. The issue came up when testing the following on Windows 10 Pro 64-bit: HighPageTest.test_highlight_target_text_mouse
-
Zachary Ware yazdı
-
Zackery Spytz yazdı
Directly executed pyc files were being kept open longer than necessary.
-
Andrés Delfino yazdı
(cherry picked from commit c45cb479) Co-authored-by:
Andrés Delfino <adelfino@gmail.com>
-
- 23 Haz, 2018 6 kayıt (commit)
-
-
Terry Jan Reedy yazdı
In configdialog, the custom tabbedpages widget was replaced by ttk.notebook several months ago.
-
Andrés Delfino yazdı
-
Dong-hee Na yazdı
-
jdemeyer yazdı
-
Victor Stinner yazdı
bz2, lzma: When Decompressor.__init__() is called twice, free the old lock to not leak memory.
-
Xiang Zhang yazdı
-
- 22 Haz, 2018 5 kayıt (commit)
-
-
Andrés Delfino yazdı
The statement is true for Windows (and macOS) also.
-
Ammar Askar yazdı
-
Victor Stinner yazdı
* Add support.MS_WINDOWS: True if Python is running on Microsoft Windows. * Add support.MACOS: True if Python is running on Apple macOS. * Replace support.is_android with support.ANDROID * Replace support.is_jython with support.JYTHON * Cleanup code to initialize unix_shell
-
Victor Stinner yazdı
Calling Py_Initialize() twice does nothing, instead of failing with a fatal error: restore the Python 3.6 behaviour.
-
Terry Jan Reedy yazdı
Increases coverage by 44%.
-
- 21 Haz, 2018 5 kayıt (commit)
-
-
Christopher Frederickson yazdı
Add missing warning filter to test_exec_filename().
-
Pablo Galindo yazdı
Increase the timeout from 1 min to 5 min. Replace also time.time() with time.monotonic() for timeouts.
-
-
Terry Jan Reedy yazdı
Every other menudef key is the lowercase version of the corresponding main menu entry (in this case, 'Window').
-
Terry Jan Reedy yazdı
Match Window on the main menu and remove last plural module name. Change imports, test, and attribute references to match new name.
-
- 20 Haz, 2018 8 kayıt (commit)
-
-
Terry Jan Reedy yazdı
The revised file compiles, runs, and tests OK. idle_test/README.txt explains how to use it to create new IDLE test files.
-
Xiang Zhang yazdı
-
Nick Coghlan yazdı
Initial What's New in Python 3.8 entry for `PYTHONPYCACHEPREFIX`.
-
Victor Stinner yazdı
Only make sure that the result is in unittest.signals._results, don't check the full content of unittest.signals._results. support._run_suite() uses TextTestRunner in verbose mode, but TextTestRunner.run() calls registerResult(result) which made the test fail with "odd object in result set". Call also removeResult() to restore unittest.signals._results to avoid test side effect.
-
-
Terry Jan Reedy yazdı
Fix-up class name duplication in PR #7807. Combined effect is that module calltips and its class CallTips are now calltip and Calltip. In module calltip_w class CallTip is now CalltipWindow.
-
Signed-off-by:
Srinivas Reddy Thatiparthy <thatiparthysreenivas@gmail.com>
-
Terry Jan Reedy yazdı
Improve consistency and appearance. Module idlelib.calltips is now calltip. Class idlelib.calltip_w.CallTip is now Calltip.
-
- 19 Haz, 2018 11 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Part 3 of 3, continuing PR #7689. This covers 14 idlelib modules and their tests, rpc to zoomheight except for run (already done) and tooltip (being done separately).
-
Victor Stinner yazdı
* Fix also PyInit__gdbm() to catch errors. * test.pythoninfo: add gdbm.version * test_dbm_gnu now logs GDBM_VERSION when run in verbose mode. * pythoninfo: rename function to collect_gdbm()
-
Victor Stinner yazdı
Add -g to LDFLAGS when compiling with LTO to get debug symbols.
-
Victor Stinner yazdı
Fix test_dbm_gnu.test_reorganize() on macOS with gdbm 1.15: add a larger value to make sure that the file size changes.
-
Giampaolo Rodola yazdı
bpo-33671 * use memoryview() with size == file size on Windows, see https://github.com/python/cpython/pull/7160#discussion_r195405230 * release intermediate (sliced) memoryview immediately * replace "OSX" occurrences with "macOS" * add some unittests for copyfileobj()
-
Marco Strigl yazdı
with debuglevel=1 only the header keys got printed. With this change the header values get printed as well and the single header entries get '\n' as a separator.
-
Victor Stinner yazdı
Using gdbm 1.15, creating a database creates a file of 16 MiB. Adding a small entry and then modifying the small entry doesn't change the file size. Modify test_dbm_gnu to be less strict: allow that the file size doesn't change.
-
Serhiy Storchaka yazdı
This may help to investigate bpo-33901.
-
Bup yazdı
-
INADA Naoki yazdı
-
Pablo Galindo yazdı
-