- 17 Ara, 2018 1 kayıt (commit)
-
-
Victor Stinner yazdı
Replace time.time() with time.monotonic() in tests to measure time delta. test_zipfile64: display progress every minute (60 secs) rather than every 5 minutes (5*60 seconds).
-
- 19 Ara, 2017 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 14 Eyl, 2017 1 kayıt (commit)
-
-
Victor Stinner yazdı
join_thread() joins a thread but raises an AssertionError if the thread is still alive after timeout seconds.
-
- 07 Eyl, 2017 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
* Remove Setup.config * Always define WITH_THREAD for compatibility.
-
- 24 Tem, 2017 1 kayıt (commit)
-
-
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
-
- 21 Nis, 2017 1 kayıt (commit)
-
-
Victor Stinner yazdı
test_quick_connect() runs a thread up to 50 seconds, whereas the socket is connected in 0.2 second and then the thread is expected to end in less than 3 second. On Linux, the thread ends quickly because select() seems to always return quickly. On FreeBSD, sometimes select() fails with timeout and so the thread runs much longer than expected. Fix the thread timeout to fix a race condition in the test.
-
- 20 Nis, 2017 1 kayıt (commit)
-
-
Victor Stinner yazdı
Call asyncore.close_all() with ignore_all=True in the tearDown() method of the test_asyncore base test case. It should prevent keeping alive sockets in asyncore.socket_map if close() fails with an unexpected error. Revert also an unwanted change of my previous commit: remove name parameter of Thread in test_quick_connect().
-
- 19 Nis, 2017 1 kayıt (commit)
-
-
Victor Stinner yazdı
Don't use addCleanup() in test_quick_connect() because it keeps the Thread object alive and so @reap_threads fails on its timeout of 1 second. "./python -m test -v test_asyncore -m test_quick_connect" now takes 185 ms, instead of 11 seconds. Other minor changes: * Use "with sock:" to close the socket instead of try/finally: sock.close() * Use self.skipTest() in test_quick_connect() to remove one indentation level and notice user that the test is specific to AF_INET and AF_INET6
-
- 04 Mar, 2017 1 kayıt (commit)
-
-
Ned Deily yazdı
* bpo-28087: Skip test_asyncore and test_eintr poll failures on macOS Skip some tests of select.poll when running on macOS due to unresolved issues with the underlying system poll function on some macOS versions.
-
- 14 Ara, 2016 1 kayıt (commit)
-
-
Xavier de Gaye yazdı
on Android for a non-root user.
-
- 07 Eyl, 2016 1 kayıt (commit)
-
-
Steve Dower yazdı
-
- 28 Tem, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 23 Tem, 2014 1 kayıt (commit)
-
-
Charles-François Natali yazdı
-
- 27 Haz, 2014 2 kayıt (commit)
-
-
Victor Stinner yazdı
object is destroyed. The destructor now closes the file if needed. The close() method can now be called twice: the second call does nothing.
-
Victor Stinner yazdı
- Use support.captured_stderr() where appropriate - Removes some "from test.support import xxx" import and uses support.xxx instead.
-
- 29 Nis, 2014 1 kayıt (commit)
-
-
Giampaolo Rodola yazdı
fix isuse #13248: remove previously deprecated asyncore.dispatcher __getattr__ cheap inheritance hack.
-
- 19 Nis, 2014 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 27 Agu, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
are now created non-inheritable; add functions os.get/set_inheritable(), os.get/set_handle_inheritable() and socket.socket.get/set_inheritable().
-
- 21 Agu, 2013 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #18792: Use "127.0.0.1" or "::1" instead of "localhost" as much as possible, since "localhost" goes through a DNS lookup under recent Windows versions.
-
Antoine Pitrou yazdı
Issue #18792: Use "127.0.0.1" or "::1" instead of "localhost" as much as possible, since "localhost" goes through a DNS lookup under recent Windows versions.
-
- 16 May, 2013 1 kayıt (commit)
-
-
Giampaolo Rodola yazdı
-
- 13 Ock, 2013 2 kayıt (commit)
-
-
Charles-François Natali yazdı
could be the cause of a random failure).
-
Charles-François Natali yazdı
could be the cause of a random failure).
-
- 10 Ock, 2013 1 kayıt (commit)
-
-
Ezio Melotti yazdı
-
- 18 Ara, 2012 1 kayıt (commit)
-
-
Andrew Svetlov yazdı
-
- 27 Eki, 2012 1 kayıt (commit)
-
-
Trent Nelson yazdı
-
- 18 Eki, 2012 2 kayıt (commit)
-
-
Trent Nelson yazdı
The backport from 3.2 included a few things not appropriate for 2.7.
-
Trent Nelson yazdı
This fixes failing tests on Solaris 10.
-
- 06 Nis, 2012 1 kayıt (commit)
-
-
Kristján Valur Jónsson yazdı
deadlock if the main thread fails before sending all the data.
-
- 23 Mar, 2012 3 kayıt (commit)
-
-
Giampaolo Rodola yazdı
-
Giampaolo Rodola yazdı
-
-
- 22 Mar, 2012 2 kayıt (commit)
-
-
Giampaolo Rodola yazdı
fix #10340: properly handle EINVAL on OSX and also avoid to call handle_connect() in case of a disconnetected socket which is not meant to connect.
-
Giampaolo Rodola yazdı
fix #10340: properly handle EINVAL on OSX and also avoid to call handle_connect() in case of a disconnetected socket which is not meant to connect.
-
- 02 Kas, 2011 1 kayıt (commit)
-
-
Charles-François Natali yazdı
-
- 31 Eki, 2011 1 kayıt (commit)
-
-
Charles-François Natali yazdı
-
- 29 Eki, 2011 2 kayıt (commit)
-
-
Charles-François Natali yazdı
-
Charles-François Natali yazdı
by Xavier de Gaye.
-
- 24 Agu, 2011 2 kayıt (commit)
-
-
Charles-François Natali yazdı
-
Charles-François Natali yazdı
-