<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/waitress.git/waitress, branch fix.filewrapper_leak</title>
<subtitle>github.com: Pylons/waitress.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/'/>
<entry>
<title>add note to changes, expand comment</title>
<updated>2014-05-16T19:19:58+00:00</updated>
<author>
<name>Chris McDonough</name>
<email>chrism@plope.com</email>
</author>
<published>2014-05-16T19:19:58+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=106b196dae40b0c49f3138d0fd2ffe0ff130a58d'/>
<id>106b196dae40b0c49f3138d0fd2ffe0ff130a58d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>no need to alias close to _close now that ReadOnlyFileBasedBuffer actually has a close method that works both when called from inside waitress and from within wsgi code</title>
<updated>2014-05-15T04:32:19+00:00</updated>
<author>
<name>Chris McDonough</name>
<email>chrism@plope.com</email>
</author>
<published>2014-05-15T04:32:19+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=2269e13ff71a66de1f1b69ce096b65a055654487'/>
<id>2269e13ff71a66de1f1b69ce096b65a055654487</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix tests</title>
<updated>2014-05-14T22:09:17+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2014-05-14T21:56:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=ffce665ede764b828ba4814c1c83ffffb063ee34'/>
<id>ffce665ede764b828ba4814c1c83ffffb063ee34</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>close() can now exist everywhere</title>
<updated>2014-05-14T22:09:17+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2014-05-14T21:55:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=e902f28836ae8a036621462f177141d43d0c1020'/>
<id>e902f28836ae8a036621462f177141d43d0c1020</id>
<content type='text'>
There is no requirement to special case _close() because of the fixes in
task.py whereby we do the right thing when it comes to the ROFB.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There is no requirement to special case _close() because of the fixes in
task.py whereby we do the right thing when it comes to the ROFB.
</pre>
</div>
</content>
</entry>
<entry>
<title>Upon a socket.error, we need to close the filehandle</title>
<updated>2014-05-14T22:09:17+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2014-05-14T21:54:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=4b5e43f240e194ef973acbcc8fbac707f3014d38'/>
<id>4b5e43f240e194ef973acbcc8fbac707f3014d38</id>
<content type='text'>
If we don't close the filehandle, socket.close() won't actually close
the underlying file descriptor because the fp still holds a reference to
it. Even when it then goes out of scope, the file pointer is still open.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If we don't close the filehandle, socket.close() won't actually close
the underlying file descriptor because the fp still holds a reference to
it. Even when it then goes out of scope, the file pointer is still open.
</pre>
</div>
</content>
</entry>
<entry>
<title>multiprocessing.Queue() is holding onto resources ...</title>
<updated>2014-05-14T22:09:09+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2014-05-14T21:53:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=b9464c28b90f39c2fd9473c4170a65ba5985d6db'/>
<id>b9464c28b90f39c2fd9473c4170a65ba5985d6db</id>
<content type='text'>
And it means we run out of file descriptors to use on OS X when running
tests...
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
And it means we run out of file descriptors to use on OS X when running
tests...
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace magic numbers with errno.X</title>
<updated>2014-05-14T21:49:08+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2014-05-14T18:57:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=9ea10d51bd0a539a2ede91c220a917db438d1577'/>
<id>9ea10d51bd0a539a2ede91c220a917db438d1577</id>
<content type='text'>
This fixes the code so that running under OS X it raises
ConnectionClosed as appropriate for when the connection is reset by
peer.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes the code so that running under OS X it raises
ConnectionClosed as appropriate for when the connection is reset by
peer.
</pre>
</div>
</content>
</entry>
<entry>
<title>sharing code with bert</title>
<updated>2014-05-14T06:51:14+00:00</updated>
<author>
<name>Chris McDonough</name>
<email>chrism@plope.com</email>
</author>
<published>2014-05-14T06:51:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=af273bd4cd9372eb91f214b9088cb6c51ba5abe7'/>
<id>af273bd4cd9372eb91f214b9088cb6c51ba5abe7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Only allow trustted proxies to overried request.urlscheme.</title>
<updated>2014-03-10T16:06:52+00:00</updated>
<author>
<name>Tres Seaver</name>
<email>tseaver@palladion.com</email>
</author>
<published>2014-03-10T16:06:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=ab015fd0b9e28ecf1adada6e53e2f66c3925b301'/>
<id>ab015fd0b9e28ecf1adada6e53e2f66c3925b301</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add 'trusted_proxy' adjustment.</title>
<updated>2014-03-10T15:44:12+00:00</updated>
<author>
<name>Tres Seaver</name>
<email>tseaver@palladion.com</email>
</author>
<published>2014-03-10T15:44:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/waitress.git/commit/?id=486315c33ecbbc19f29a8947615e8ecabfc6ad6c'/>
<id>486315c33ecbbc19f29a8947615e8ecabfc6ad6c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
