Sorry, something went wrong.
|
This change should not be backported to 3.11: it was done in Python 3.12. |
Sorry, something went wrong.
There was a problem hiding this comment.
LGTM.
Sorry, something went wrong.
| from socketserver import (ThreadingUDPServer, DatagramRequestHandler, | ||
| ThreadingTCPServer, StreamRequestHandler) | ||
|
|
||
| with warnings.catch_warnings(): |
There was a problem hiding this comment.
The change removes with warnings.catch_warnings(): but apparently, it's useless. The test still pass without it:
Sorry, something went wrong.
|
GH-114427 is a backport of this pull request to the 3.12 branch. |
Sorry, something went wrong.
|
Merged, thanks. |
Sorry, something went wrong.
This module was removed from stdlib in #93246
But, since it is not really a test file, it should have been moved to Lib/test/support, not Lib/test. This PR fixes that :)
Now this is in line with asyncore and asynchat.