<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/trollius.git/asyncio/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>PipeHandle now uses None instead of -1 for a closed handle</title>
<updated>2015-01-14T21:57:27+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-01-14T21:57:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=3835c52709c0f5c0bb567f648c86455e00c4c7b7'/>
<id>3835c52709c0f5c0bb567f648c86455e00c4c7b7</id>
<content type='text'>
Sort also imports in windows_utils.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Sort also imports in windows_utils.
</pre>
</div>
</content>
</entry>
<entry>
<title>Truncate to 80 columns</title>
<updated>2015-01-08T23:02:52+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-01-08T23:02:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=bc2b6d110b2f6ca0645cb2503652dc19bfc4a9c1'/>
<id>bc2b6d110b2f6ca0645cb2503652dc19bfc4a9c1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add repr(PipeHandle)</title>
<updated>2014-12-18T16:29:06+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2014-12-18T16:29:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=132011f2502ea17d1921185852a7bd23bb14be16'/>
<id>132011f2502ea17d1921185852a7bd23bb14be16</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>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>Satisfy (most) pep8 whitespace requirements.</title>
<updated>2013-11-01T15:14:03+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>2013-11-01T15:14:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=ae19e6de71b7777ff6a81d22399f77faa872d8eb'/>
<id>ae19e6de71b7777ff6a81d22399f77faa872d8eb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for running subprocesses on Windows with the IOCP event loop.</title>
<updated>2013-10-27T15:14:17+00:00</updated>
<author>
<name>Richard Oudkerk</name>
<email>shibturn@gmail.com</email>
</author>
<published>2013-10-27T15:14:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=949c36b0e12ee4d2c6511fd75200913a7470400a'/>
<id>949c36b0e12ee4d2c6511fd75200913a7470400a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename tulip package to asyncio.</title>
<updated>2013-10-14T21:12:46+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@dropbox.com</email>
</author>
<published>2013-10-14T21:12:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=e800cd65911849df260fba6054739921b668bd78'/>
<id>e800cd65911849df260fba6054739921b668bd78</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
