Replace deprecation warning with RuntimeError (GH-14397)

This commit is contained in:
Andrew Svetlov 2019-06-27 14:38:47 +03:00 committed by GitHub
parent 667eaffb4e
commit 97d15b1ee0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 4 deletions

View File

@ -1293,10 +1293,8 @@ class Stream:
is_server_side=False,
_asyncio_internal=False):
if not _asyncio_internal:
warnings.warn(f"{self.__class__} should be instaniated "
"by asyncio internals only, "
"please avoid its creation from user code",
DeprecationWarning)
raise RuntimeError(f"{self.__class__} should be instantiated "
"by asyncio internals only")
self._mode = mode
self._transport = transport
self._protocol = protocol

View File

@ -1779,6 +1779,12 @@ os.close(fd)
self.loop.run_until_complete(test())
def test_stream_ctor_forbidden(self):
with self.assertRaisesRegex(RuntimeError,
"should be instantiated "
"by asyncio internals only"):
asyncio.Stream(asyncio.StreamMode.READWRITE)
if __name__ == '__main__':
unittest.main()