add extra 'pass' statements to work around minify issues.
This commit is contained in:
parent
27b64a484b
commit
2fcea4b199
|
@ -176,6 +176,7 @@ class Error(Exception):
|
||||||
class LatchError(Error):
|
class LatchError(Error):
|
||||||
"""Raised when an attempt is made to use a :py:class:`mitogen.core.Latch`
|
"""Raised when an attempt is made to use a :py:class:`mitogen.core.Latch`
|
||||||
that has been marked closed."""
|
that has been marked closed."""
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
class Blob(BytesType):
|
class Blob(BytesType):
|
||||||
|
@ -261,10 +262,12 @@ class ChannelError(Error):
|
||||||
|
|
||||||
class StreamError(Error):
|
class StreamError(Error):
|
||||||
"""Raised when a stream cannot be established."""
|
"""Raised when a stream cannot be established."""
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
class TimeoutError(Error):
|
class TimeoutError(Error):
|
||||||
"""Raised when a timeout occurs on a stream."""
|
"""Raised when a timeout occurs on a stream."""
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
def to_text(o):
|
def to_text(o):
|
||||||
|
|
Loading…
Reference in New Issue