Skip to content

Commit 34c29ef

Browse files
committed
-
1 parent 240835c commit 34c29ef

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test_python_toolbox/test_monkeypatching_tools.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ def f(): pass
8282

8383
def test_monkeypatch_staticmethod():
8484

85+
if sys.version[:2] <= (2, 6):
86+
raise nose.SkipTest('Not supported on Python 2.6.')
87+
8588
class A(object):
8689
@staticmethod
8790
def my_static_method(x):

0 commit comments

Comments
 (0)