Remove "pragma: no cover" comments
This commit is contained in:
parent
4ff7453b48
commit
f0c7f21312
|
@ -371,7 +371,7 @@ class CaptureIO(io.TextIOWrapper):
|
|||
return self.buffer.getvalue().decode("UTF-8")
|
||||
|
||||
|
||||
if sys.version_info < (3, 5, 2): # pragma: no cover
|
||||
if sys.version_info < (3, 5, 2):
|
||||
|
||||
def overload(f): # noqa: F811
|
||||
return f
|
||||
|
|
|
@ -166,7 +166,7 @@ class TestRaises:
|
|||
# Early versions of Python 3.5 have some bug causing the
|
||||
# __call__ frame to still refer to t even after everything
|
||||
# is done. This makes the test pass for them.
|
||||
if sys.version_info < (3, 5, 2): # pragma: no cover
|
||||
if sys.version_info < (3, 5, 2):
|
||||
del self
|
||||
raise ValueError
|
||||
|
||||
|
|
Loading…
Reference in New Issue