<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/waitress.git, branch main</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>Merge pull request #401 from pganguli/patch-1</title>
<updated>2023-04-06T05:12:58+00:00</updated>
<author>
<name>Michael Merickel</name>
<email>michael@merickel.org</email>
</author>
<published>2023-04-06T05:12:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/waitress.git/commit/?id=455f2a5fd38cafab95893ca170c7504e4239d985'/>
<id>455f2a5fd38cafab95893ca170c7504e4239d985</id>
<content type='text'>
docs: Fix typo in usage.rst</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
docs: Fix typo in usage.rst</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typo in usage.rst</title>
<updated>2023-02-09T03:45:46+00:00</updated>
<author>
<name>Prateek Ganguli</name>
<email>prateek.ganguli@gmail.com</email>
</author>
<published>2023-02-09T03:45:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/waitress.git/commit/?id=062c254de452f8b4ee3583c0b30190223ed5af23'/>
<id>062c254de452f8b4ee3583c0b30190223ed5af23</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update CHANGES.txt</title>
<updated>2023-01-23T04:34:10+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2023-01-23T04:34:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/waitress.git/commit/?id=afc7b9de54f21b63bb1e8fd6b12c704876d9868a'/>
<id>afc7b9de54f21b63bb1e8fd6b12c704876d9868a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #399 from Pylons/bugfix/move-socket-options-setting-into-try-except</title>
<updated>2023-01-23T04:15:47+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2023-01-23T04:15:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/waitress.git/commit/?id=c00713b67f602e127fba76bb0fc9d32098c42a54'/>
<id>c00713b67f602e127fba76bb0fc9d32098c42a54</id>
<content type='text'>
Setting socket options may fail if remote has already disappeared</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Setting socket options may fail if remote has already disappeared</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #398 from Pylons/replace-pkg_resources-importlib-metadata</title>
<updated>2023-01-23T04:10:18+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2023-01-23T04:10:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/waitress.git/commit/?id=1b364016772a1a0a3e48a9847a035876bce1e75f'/>
<id>1b364016772a1a0a3e48a9847a035876bce1e75f</id>
<content type='text'>
Replace pkg_resources use with importlib.metadata</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Replace pkg_resources use with importlib.metadata</pre>
</div>
</content>
</entry>
<entry>
<title>Replace pkg_resources use with importlib.metadata</title>
<updated>2023-01-23T04:03:57+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2023-01-23T03:52:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/waitress.git/commit/?id=95a780cbdeebe31b197ce9cfba86a613c70d9b9f'/>
<id>95a780cbdeebe31b197ce9cfba86a613c70d9b9f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Setting socket options may fail if remote has already disappeared</title>
<updated>2023-01-23T03:59:41+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2023-01-23T03:59:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/waitress.git/commit/?id=5903d585617683da4a1e8005b7f2d7f9b385e26b'/>
<id>5903d585617683da4a1e8005b7f2d7f9b385e26b</id>
<content type='text'>
By the time we come around to accepting a connection on macOS, the
remote may have already disappeared, in which case setting options on
the socket may fail with an error.

Instead of failing and shutting down the server we want to continue, so
move the setting of socket options into the try/except block and log the
error instead.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
By the time we come around to accepting a connection on macOS, the
remote may have already disappeared, in which case setting options on
the socket may fail with an error.

Instead of failing and shutting down the server we want to continue, so
move the setting of socket options into the try/except block and log the
error instead.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #397 from Pylons/bugfix/test-gardenpath</title>
<updated>2023-01-23T03:41:53+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2023-01-23T03:41:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/waitress.git/commit/?id=56e44fec0931ea6726a28fab96607f829854a219'/>
<id>56e44fec0931ea6726a28fab96607f829854a219</id>
<content type='text'>
Fix testing of strerror to use actual valid errno/strerror to compare</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix testing of strerror to use actual valid errno/strerror to compare</pre>
</div>
</content>
</entry>
<entry>
<title>Fix testing of strerror to use actual valid errno/strerror to compare</title>
<updated>2023-01-23T03:34:22+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2023-01-23T03:32:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/waitress.git/commit/?id=f4b5c7584e8f2bb4617c547e7ea560c8e86aaba3'/>
<id>f4b5c7584e8f2bb4617c547e7ea560c8e86aaba3</id>
<content type='text'>
Closes #395
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #395
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace pytest-cover with pytest-cov</title>
<updated>2023-01-23T03:30:46+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2023-01-23T03:30:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/waitress.git/commit/?id=3e440716e15160c8ff11617f554631e18aec47c9'/>
<id>3e440716e15160c8ff11617f554631e18aec47c9</id>
<content type='text'>
Closes #394
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #394
</pre>
</div>
</content>
</entry>
</feed>
