mit neuen venv und exe-Files
This commit is contained in:
26
venv3_12/Lib/site-packages/gevent/monkey/_errors.py
Normal file
26
venv3_12/Lib/site-packages/gevent/monkey/_errors.py
Normal file
@@ -0,0 +1,26 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
Exception classes and errors that this package may raise.
|
||||
|
||||
"""
|
||||
import logging
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
class _BadImplements(AttributeError):
|
||||
"""
|
||||
Raised when ``__implements__`` is incorrect.
|
||||
"""
|
||||
|
||||
def __init__(self, module):
|
||||
AttributeError.__init__(
|
||||
self,
|
||||
"Module %r has a bad or missing value for __implements__" % (module,)
|
||||
)
|
||||
|
||||
class MonkeyPatchWarning(RuntimeWarning):
|
||||
"""
|
||||
The type of warnings we issue.
|
||||
|
||||
.. versionadded:: 1.3a2
|
||||
"""
|
||||
Reference in New Issue
Block a user