<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/trollius.git/tests/test_windows_utils.py, branch remove-joinable-queue</title>
<subtitle>bitbucket.org: Obsolete (use python-packages/trollius-git)
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/'/>
<entry>
<title>Close transports in tests</title>
<updated>2015-01-15T13:23:32+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-01-15T13:23:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=e70e384fcebeb63a4fc0e690e47b4d24437a5c95'/>
<id>e70e384fcebeb63a4fc0e690e47b4d24437a5c95</id>
<content type='text'>
* Use test_utils.run_briefly() to execute pending calls to really close
  transports
* sslproto: mock also _SSLPipe.shutdown(), it's need to close the transport
* pipe test: the test doesn't close explicitly the PipeHandle, so ignore
  the warning instead
* test_popen: use the context manager ("with p:") to explicitly close pipes
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Use test_utils.run_briefly() to execute pending calls to really close
  transports
* sslproto: mock also _SSLPipe.shutdown(), it's need to close the transport
* pipe test: the test doesn't close explicitly the PipeHandle, so ignore
  the warning instead
* test_popen: use the context manager ("with p:") to explicitly close pipes
</pre>
</div>
</content>
</entry>
<entry>
<title>CPython doesn't have asyncio.test_support</title>
<updated>2014-12-26T20:16:17+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2014-12-26T20:16:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=3d86bdf32a2e8e0fab6ccfb2475a526f82313f61'/>
<id>3d86bdf32a2e8e0fab6ccfb2475a526f82313f61</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>asyncio.test_support now uses test.support and test.script_helper if available</title>
<updated>2014-12-19T21:18:09+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2014-12-19T21:18:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=4fa9288ec5981f329c8d96c2965c3cb3a361cd1f'/>
<id>4fa9288ec5981f329c8d96c2965c3cb3a361cd1f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Copy a subset of test.support from CPython 3.5 to no more depend on the test</title>
<updated>2014-12-18T11:28:08+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2014-12-18T11:28:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=5fb15e5a4ba08dfa7a1985422578ca1da88eefdd'/>
<id>5fb15e5a4ba08dfa7a1985422578ca1da88eefdd</id>
<content type='text'>
module to run the asyncio test suite. The test module is rarely installed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
module to run the asyncio test suite. The test module is rarely installed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Reuse socket.socketpair() on Windows if available</title>
<updated>2014-10-14T20:53:35+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2014-10-14T20:53:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=92da08f744d82f7930837374e7596e2579b6fe05'/>
<id>92da08f744d82f7930837374e7596e2579b6fe05</id>
<content type='text'>
Since Python 3.5, socket.socketpair() is now also available on Windows.

Make csock blocking before calling the accept() method, and fix also a typo in
an error message.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since Python 3.5, socket.socketpair() is now also available on Windows.

Make csock blocking before calling the accept() method, and fix also a typo in
an error message.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix tests on Windows: wait for the subprocess exit</title>
<updated>2014-06-03T22:41:42+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2014-06-03T22:41:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=485e69fa41cfdd4d763386cdd1aa5711d0b8a26c'/>
<id>485e69fa41cfdd4d763386cdd1aa5711d0b8a26c</id>
<content type='text'>
Before, regrtest failed to remove the temporary test directory because the
process was still running in this directory.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Before, regrtest failed to remove the temporary test directory because the
process was still running in this directory.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make sure that socketpair() close sockets on error</title>
<updated>2014-06-03T22:08:02+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2014-06-03T22:08:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=36cb0ae503bd8b64580be6527b6828dec1e341d7'/>
<id>36cb0ae503bd8b64580be6527b6828dec1e341d7</id>
<content type='text'>
Close the listening socket if sock.bind() raises an exception.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Close the listening socket if sock.bind() raises an exception.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #159: Fix windows_utils.socketpair()</title>
<updated>2014-03-05T21:52:18+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2014-03-05T21:52:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=7ca3c701c61c1abd5d929cbdb4dc96d786b2b6eb'/>
<id>7ca3c701c61c1abd5d929cbdb4dc96d786b2b6eb</id>
<content type='text'>
* Use "127.0.0.1" (IPv4) or "::1" (IPv6) host instead of "localhost", because
  "localhost" may be a different IP address
* Reject also invalid arguments: only AF_INET/AF_INET6 with SOCK_STREAM (and
  proto=0) are supported
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Use "127.0.0.1" (IPv4) or "::1" (IPv6) host instead of "localhost", because
  "localhost" may be a different IP address
* Reject also invalid arguments: only AF_INET/AF_INET6 with SOCK_STREAM (and
  proto=0) are supported
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace "unittest.mock" with "mock" in unit tests</title>
<updated>2014-02-26T09:22:59+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2014-02-26T09:22:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=b23f5dabab1f7a5e241d348bca8d0aabf2c77a29'/>
<id>b23f5dabab1f7a5e241d348bca8d0aabf2c77a29</id>
<content type='text'>
Use "from unittest import mock". It should simplify my work to merge new tests
in Trollius, because Trollius uses "mock" backport for Python 2.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use "from unittest import mock". It should simplify my work to merge new tests
in Trollius, because Trollius uses "mock" backport for Python 2.
</pre>
</div>
</content>
</entry>
<entry>
<title>Increase timeout in test_popen() for buildbots.</title>
<updated>2013-11-15T15:39:29+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>2013-11-15T15:39:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=d6e9202317776f7c908d7fdcf9a08b14169ce8b6'/>
<id>d6e9202317776f7c908d7fdcf9a08b14169ce8b6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
