We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a84d1f1 commit bcb5c53Copy full SHA for bcb5c53
pandas/util/testing.py
@@ -48,6 +48,14 @@
48
from pandas._libs import testing as _testing
49
from pandas.io.common import urlopen
50
51
+if sys.version_info >= (3, 3):
52
+ from contextlib import ExitStack as nullcontext
53
+else:
54
+ from contextlib2 import ExitStack as nullcontext
55
+
56
57
+do_not_raise = nullcontext()
58
59
60
N = 30
61
K = 4
0 commit comments