- 29 Tem, 2017 1 kayıt (commit)
-
-
Terry Jan Reedy yazdı
The notebook looks a bit better. It will work better with separate page classes. Traversal of widgets by Tab works better. Switching tabs with keys becomes possible. The font sample box works better at large font sizes. One of the two simulated click tests no longer works. This will be investigated while fixing a bug with the widget itself.
-
- 28 Tem, 2017 8 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Add clear method for tests. Adjust tests to use global instance. Remove unneeded ConfigDialog method.
-
csabella yazdı
Instance tracers manages pairs consisting of a tk variable and a callback function. When tracing is turned on, setting the variable calls the function. Test coverage for the new class is 100%.
-
Yuval Langer yazdı
-
Victor Stinner yazdı
Write the temporary file on disk and then get its modification time.
-
Victor Stinner yazdı
test_subprocess now also calls reap_children() in tearDown(), not only on setUp().
-
Utkarsh Upadhyay yazdı
* Update 'Porting to .37' section. * Fix a minor example in the doc.
-
INADA Naoki yazdı
-
- 27 Tem, 2017 6 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Finish resorting the 72 ConfigDialog methods into 7 groups that represent the dialog, action buttons, and font, highlight, keys, general, and extension pages. This will help with continuing to add tests and improve the pages. It will enable splitting ConfigDialog into 6 or 7 more comprehensible classes.
-
Victor Stinner yazdı
There is a bug in FreeBSD CURRENT with 64-bit dev_t. Skip the test if dev_t is larger than 32-bit, until the bug is fixed in FreeBSD CURRENT.
-
Serhiy Storchaka yazdı
-
Victor Stinner yazdı
* bpo-31028: Fix test_pydoc when run directly Fix get_pydoc_link() of test_pydoc to fix "./python Lib/test/test_pydoc.py": get the absolute path to __file__ to prevent relative directories. * Use realpath() instead of abspath()
-
Segev Finer yazdı
-
Terry Jan Reedy yazdı
* In configdialog: Document causal pathways in create_page_general. Move related functions to follow this. Simplify some attribute names. * In test_configdialog: Add tests for load and helplist functions. Coverage for the general tab is now complete, and 63% overall.
-
- 26 Tem, 2017 8 kayıt (commit)
-
-
csabella yazdı
The new class manages pairs of tk Variables and trace callbacks. It is completely covered by new tests.
-
Segev Finer yazdı
* bpo-9566: Fixed some _ssl warnings * bpo-9566: _ssl: Fixup the fixes and also fix the remainings warnings * Add a comment about the downcast
-
Segev Finer yazdı
* bpo-9566: Silence liblzma warnings * bpo-9566: Silence tcl warnings * bpo-9566: Silence tk warnings * bpo-9566: Silence tix warnings * bpo-9566: Fix some library warnings * bpo-9566: Fix msvcrtmodule.c warnings * bpo-9566: Silence _bz2 warnings * bpo-9566: Fixed some _ssl warnings * bpo-9566: Fix _msi warnings * bpo-9566: Silence _ctypes warnings * Revert "bpo-9566: Fixed some _ssl warnings" This reverts commit a639001c949ba53338a9ee047d2ec1efd2505e6f. * bpo-9566: Also consider NULL as a possible error in HANDLE_return_converter * bpo-9566: whitespace fixes
-
Steve Dower yazdı
* Enable building MSI, zip and nuget packages when Py_OutDir is set. * Restore the --build option, which got reverted at some point. * Ensure output directory is created. * Enables BuildForDaily and DailyBuildVersion options for nuget package.
-
Segev Finer yazdı
-
INADA Naoki yazdı
fixes regression of 5b4feb7e
-
Utkarsh Upadhyay yazdı
-
Victor Stinner yazdı
multiprocessing.Process.is_alive() now removes the process from the _children set if the process completed. The change prevents leaking "dangling" processes.
-
- 25 Tem, 2017 8 kayıt (commit)
-
-
lf yazdı
-
Utkarsh Upadhyay yazdı
-
Victor Stinner yazdı
* 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
-
Victor Stinner yazdı
* bpo-31009: Fix support.fd_count() on Windows On Windows, test.support.fd_count() now calls msvcrt.CrtSetReportMode() to not kill the process nor log any error on stderr on os.dup(fd) if the file descriptor is invalid. * Fix for release mode
-
Stéphane Wirtel yazdı
-
Stéphane Wirtel yazdı
-
Segev Finer yazdı
-
Victor Stinner yazdı
* 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
-
- 24 Tem, 2017 9 kayıt (commit)
-
-
Victor Stinner yazdı
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.
-
Victor Stinner yazdı
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)
-
waxmoon yazdı
I found a tiny typo in the curses how-to: changed 'Thy' to 'The' on line 68.
-
Nir Soffer yazdı
* bpo-30980: Fix close test to fail test_close_twice was not considering the fact that file_wrapper is duping the file descriptor. Closing the original descriptor left the duped one open, hiding the fact that close protection is not effective. * bpo-30980: Fix double close protection Invalidated self.fd before closing, handling correctly the case when os.close raises. * bpo-30980: Fix fd leak introduced in the fixed test
-
Victor Stinner yazdı
Catch also ssl.SSLEOFError in NetworkedNNTPTests setUpClass(). EOFError was already catched.
-
Victor Stinner yazdı
test_level() of _test_multiprocessing._TestLogging now uses regular processes rather than daemon processes to prevent zombi processes (to not "leak" processes).
-
Ned Deily yazdı
-
Terry Jan Reedy yazdı
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.
-
Eli Boyarski yazdı
-