<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/trollius.git/tests/test_transports.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>Move loop attribute to _FlowControlMixin</title>
<updated>2014-11-05T14:25:26+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2014-11-05T14:25:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=f803275de42ee06357fbba334592c0153b1ea25d'/>
<id>f803275de42ee06357fbba334592c0153b1ea25d</id>
<content type='text'>
Move the _loop attribute from the constructor of _SelectorTransport,
_ProactorBasePipeTransport and _UnixWritePipeTransport classes to the
constructor of the _FlowControlMixin class.

Add also an assertion to explicit that the parent class must ensure that the
loop is defined (not None)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Move the _loop attribute from the constructor of _SelectorTransport,
_ProactorBasePipeTransport and _UnixWritePipeTransport classes to the
constructor of the _FlowControlMixin class.

Add also an assertion to explicit that the parent class must ensure that the
loop is defined (not None)
</pre>
</div>
</content>
</entry>
<entry>
<title>Tulip issue #203: Add _FlowControlMixin.get_write_buffer_limits() method</title>
<updated>2014-08-25T22:10:48+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2014-08-25T22:10:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=de83cc680038fa5a40cd90f0a00db5c8d941437a'/>
<id>de83cc680038fa5a40cd90f0a00db5c8d941437a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>WriteTransport.set_write_buffer_size to call _maybe_pause_protocol (closes issue #140)</title>
<updated>2014-02-19T16:09:02+00:00</updated>
<author>
<name>Yury Selivanov</name>
<email>yselivanov@sprymix.com</email>
</author>
<published>2014-02-19T16:09:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=f5cb1bd1c45a35136d5b90304773c63c2080d1c3'/>
<id>f5cb1bd1c45a35136d5b90304773c63c2080d1c3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Unit tests use the main asyncio module instead of submodules like events</title>
<updated>2014-01-24T13:46:00+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2014-01-24T13:46:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=912763316f38896d8cb3b35128693b544b087a53'/>
<id>912763316f38896d8cb3b35128693b544b087a53</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make writelines() join the lines before calling write(). Fixes issue 92.</title>
<updated>2013-12-02T23:45:28+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>2013-12-02T23:45:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=03f8a142181336bca1c3bc3bf1daed6544748e31'/>
<id>03f8a142181336bca1c3bc3bf1daed6544748e31</id>
<content type='text'>
Also added some missing NotImplementedError tests.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also added some missing NotImplementedError tests.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make various asyncio test files individually runnable.</title>
<updated>2013-10-21T03:22:16+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>2013-10-21T03:22:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=fd8201444a3c3a9d612e4c81525c5a20605f1530'/>
<id>fd8201444a3c3a9d612e4c81525c5a20605f1530</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge</title>
<updated>2013-10-18T14:43:44+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>2013-10-18T14:43:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=932536fbd57ac366f03a111adadaeaa69723f75d'/>
<id>932536fbd57ac366f03a111adadaeaa69723f75d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename tests from foo_test.py to test_foo.py, to match stdlib preference.</title>
<updated>2013-10-14T22:54:49+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@dropbox.com</email>
</author>
<published>2013-10-14T22:54:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/trollius.git/commit/?id=ebe6df4540ab02c25ec19cc6f3c4b164faacc8bf'/>
<id>ebe6df4540ab02c25ec19cc6f3c4b164faacc8bf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
