[issue19258] Got resource warning when running wsgiref demo app

2013-10-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset f1e66ef64d17 by Georg Brandl in branch '3.3': Closes #19258: close WSGI server after handling request in demo code. http://hg.python.org/cpython/rev/f1e66ef64d17 New changeset 64a1e224042e by Georg Brandl in branch '2.7': Closes #19258: close WSGI s

[issue19258] Got resource warning when running wsgiref demo app

2013-10-14 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue19258] Got resource warning when running wsgiref demo app

2013-10-14 Thread Vajrasky Kok
New submission from Vajrasky Kok: ./python Lib/wsgiref/simple_server.py Serving HTTP on 0.0.0.0 port 8000 ... 127.0.0.1 - - [14/Oct/2013 17:23:43] "GET /xyz?abc HTTP/1.1" 200 4510 sys:1: ResourceWarning: unclosed Attached the patch to close the socket. -- components: Library (Lib) fil