<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/waitress.git/waitress/tests/test_functional.py, branch trigger</title>
<subtitle>github.com: Pylons/waitress.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/waitress.git/'/>
<entry>
<title>run linkcheck and fix redirects, broken links</title>
<updated>2018-09-06T09:05:12+00:00</updated>
<author>
<name>Steve Piercy</name>
<email>web@stevepiercy.com</email>
</author>
<published>2018-09-06T09:05:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/waitress.git/commit/?id=d62ea44a0272af0c6356db64365f7d4637675b51'/>
<id>d62ea44a0272af0c6356db64365f7d4637675b51</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>The test relies on having a class attribute</title>
<updated>2016-06-03T20:11:40+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2016-06-02T21:31:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/waitress.git/commit/?id=48538ab7011bbc2aa11488ef788f82f6b6c7f919'/>
<id>48538ab7011bbc2aa11488ef788f82f6b6c7f919</id>
<content type='text'>
So we need to make sure it has one. The attribute itself was removed
from the real classes, but we don't have access to the actual object
created, so we fake it here for now.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
So we need to make sure it has one. The attribute itself was removed
from the real classes, but we don't have access to the actual object
created, so we fake it here for now.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix tests under windows</title>
<updated>2014-05-16T21:13:13+00:00</updated>
<author>
<name>Chris McDonough</name>
<email>chrism@plope.com</email>
</author>
<published>2014-05-16T21:13:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/waitress.git/commit/?id=1e72f502c81998b7646e3475326d1cf85d6c18a2'/>
<id>1e72f502c81998b7646e3475326d1cf85d6c18a2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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://git.baserock.org/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://git.baserock.org/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://git.baserock.org/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>- When waitress receives a ``Transfer-Encoding: chunked`` request, we no longer</title>
<updated>2013-11-21T21:38:49+00:00</updated>
<author>
<name>Chris McDonough</name>
<email>chrism@plope.com</email>
</author>
<published>2013-11-21T21:38:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/waitress.git/commit/?id=e8d1419d5d12478a0fc9ebc51a0a920cc58b6260'/>
<id>e8d1419d5d12478a0fc9ebc51a0a920cc58b6260</id>
<content type='text'>
  send the ``TRANSFER_ENCODING`` nor the ``HTTP_TRANSFER_ENCODING`` value to
  the application in the environment.  Instead, we pop this header.  Since we
  cope with chunked requests by buffering the data in the server, we also know
  when a chunked request has ended, and therefore we know the content length.
  We set the content-length header in the environment, such that applications
  effectively never know the original request was a T-E: chunked request; it
  will appear to them as if the request is a non-chunked request with an
  accurate content-length.

- Cope with the fact that the ``Transfer-Encoding`` value is case-insensitive.

Fixes #43
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  send the ``TRANSFER_ENCODING`` nor the ``HTTP_TRANSFER_ENCODING`` value to
  the application in the environment.  Instead, we pop this header.  Since we
  cope with chunked requests by buffering the data in the server, we also know
  when a chunked request has ended, and therefore we know the content length.
  We set the content-length header in the environment, such that applications
  effectively never know the original request was a T-E: chunked request; it
  will appear to them as if the request is a non-chunked request with an
  accurate content-length.

- Cope with the fact that the ``Transfer-Encoding`` value is case-insensitive.

Fixes #43
</pre>
</div>
</content>
</entry>
<entry>
<title>fix py32 tests (no u'')</title>
<updated>2013-08-15T16:32:54+00:00</updated>
<author>
<name>Adam Groszer</name>
<email>agroszer@gmail.com</email>
</author>
<published>2013-08-15T16:32:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/waitress.git/commit/?id=0932500f532dc83503a99c22d964220d7fba2731'/>
<id>0932500f532dc83503a99c22d964220d7fba2731</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>#4, on InternalServerError and HTTP 1.1 take care of the connection: close header</title>
<updated>2013-08-15T15:31:52+00:00</updated>
<author>
<name>Adam Groszer</name>
<email>agroszer@gmail.com</email>
</author>
<published>2013-08-15T15:31:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/waitress.git/commit/?id=324ca0cb60bc14eca68599aafb2906e28c5043ae'/>
<id>324ca0cb60bc14eca68599aafb2906e28c5043ae</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>half-fix for #4; make the http version of the response match the http version of the request when the server catches an exception</title>
<updated>2013-08-15T13:30:43+00:00</updated>
<author>
<name>Chris McDonough</name>
<email>chrism@plope.com</email>
</author>
<published>2013-08-15T13:30:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/waitress.git/commit/?id=655591a473c245963665332dd7ebe875c2eca8d1'/>
<id>655591a473c245963665332dd7ebe875c2eca8d1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
