mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Fix for raising exception not derived from BaseException in _SelectorSslTransport.resume_reading
This commit is contained in:
parent
0a4d13e87e
commit
3207a03035
2 changed files with 5 additions and 1 deletions
|
@ -670,7 +670,7 @@ class _SelectorSslTransport(_SelectorTransport):
|
|||
|
||||
def resume_reading(self):
|
||||
if not self._paused:
|
||||
raise ('Not paused')
|
||||
raise RuntimeError('Not paused')
|
||||
self._paused = False
|
||||
if self._closing:
|
||||
return
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue