- 30 Haz, 2018 5 kayıt (commit)
-
-
Tal Einat yazdı
-
INADA Naoki yazdı
-
Serhiy Storchaka yazdı
They can be exposed when some C API calls fail due to lack of memory. * Failed Py_BuildValue() could cause an assertion error in the following TextIOWrapper.tell(). * input_chunk could be decrefed twice in TextIOWrapper.seek() after failed Py_BuildValue(). * initvalue could leak in StringIO.__getstate__() after failed PyDict_Copy().
-
Tal Einat yazdı
* `flags` is indeed deprecated, but there is a validation on its value for backwards compatibility reasons. This adds mention of this in the docs. * The docs say that `sizehint` is deprecated and ignored, but it is still used when `epoll_create1()` is unavailable. This adds mention of this in the docs. * `sizehint=-1` is acceptable again, and is replaced with `FD_SETSIZE-1`. This is needed to have a default value available at the Python level, since `FD_SETSIZE` is not exposed to Python. (see: bpo-31938) * Reject `sizehint=0` since it is invalid to pass on to `epoll_create()`. The relevant tests have also been updated.
-
Serhiy Storchaka yazdı
Fix passing lists and tuples of strings containing special characters '"', '\\', '{', '}' and '\n' as options to tkinter.ttk widgets.
-
- 29 Haz, 2018 6 kayıt (commit)
-
-
Jeremy Cline yazdı
-
Mariatta yazdı
-
Zackery Spytz yazdı
-
Andrés Delfino yazdı
-
Terry Jan Reedy yazdı
The 'wikipedia' example is now 'rosette', describing what it draws. The 'penrose' print output is reduced. The 'tree' '1024' output is eliminated.
-
Yury Selivanov yazdı
-
- 28 Haz, 2018 6 kayıt (commit)
-
-
Yury Selivanov yazdı
-
Thomas A Caswell yazdı
-
Elvis Pranskevichus yazdı
-
Ned Deily yazdı
-
INADA Naoki yazdı
-
-
- 27 Haz, 2018 15 kayıt (commit)
-
-
Ned Deily yazdı
-
Victor Stinner yazdı
Increase timeouts from 10 seconds to 1 minute.
-
Victor Stinner yazdı
bpo-30339, bpo-33913: * Increase timeout from 10 seconds to 1 minute in test_source_main_skipped_in_children source of test_multiprocessing_main_handling. * Replace time.time() with time.monotonic(). * On timeout, include the duration in the error message.
-
Zackery Spytz yazdı
-
Victor Stinner yazdı
test_mymanager_context() now also accepts -SIGTERM as an expected exitcode for the manager process. The process is killed with SIGTERM if it takes longer than 1 second to stop.
-
Steve Dower yazdı
-
twisteroid ambassador yazdı
-
Victor Stinner yazdı
OpenProcess() creates a new handle that must be closed later.
-
Victor Stinner yazdı
Fix a race condition in Popen of multiprocessing.popen_spawn_win32. The child process now duplicates the read end of pipe instead of "stealing" it. Previously, the read end of pipe was "stolen" by the child process, but it leaked a handle if the child process had been terminated before it could steal the handle from the parent process.
-
Victor Stinner yazdı
Tolerate a different of 50 ms, instead of just 30 ms, in test_timeout() of multiprocessing tests. This change should fix such test failure on Windows: FAIL: test_timeout (test.test_multiprocessing_spawn.WithProcessesTestQueue) Traceback (most recent call last): File "lib\test\_test_multiprocessing.py", line 753, in test_timeout self.assertGreaterEqual(delta, 0.170) AssertionError: 0.16138982772827148 not greater than or equal to 0.17
-
Raymond Hettinger yazdı
Handle subnormal weights for choices()
-
Terry Jan Reedy yazdı
Import pyshell first in htest to call SetProcessDpiAwareness on Windows before tkinter.Tk() is called for the htest. Apparently, 'root.destroy()' undoes a previous 'root = Tk()'. Since IDLE unittests always destroy roots, a unittest before an htest does not require anything more to work right. Since part of the purpose of human-viewed tests is to determine that widgets look right, it is important that they look the same for testing as when running IDLE.
-
Behzad B. Mokhtari yazdı
it's better to refer to PEP with `pep` role in reStructuredText. It also links to the PEP page.
-
Ned Deily yazdı
-
Benjamin Peterson yazdı
-
- 26 Haz, 2018 4 kayıt (commit)
-
-
Pablo Galindo yazdı
Fix bug in `Lib/test/libregrtest/runtest.py` that makes running tests an extra time than the specified number of runs. Add check for invalid --huntrleaks/-R parameters.
-
-
Mark Roseman yazdı
These should have been included in PR 7836.
-
Victor Stinner yazdı
This reverts commit 8fbbdf0c.
-
- 25 Haz, 2018 4 kayıt (commit)
-
-
Tal Einat yazdı
-
Andrés Delfino yazdı
-
Andrés Delfino yazdı
Adds references to info about file modes, `time.strftime()`, string formatting syntaxes, and logging levels.
-
Dong-hee Na yazdı
-