Commit 0c952f10 authored by Denis Bilenko's avatar Denis Bilenko

2.4-compatibility in greentest.py

parent df7d6282
......@@ -30,7 +30,10 @@ import os
from os.path import basename, splitext
import gevent
from patched_tests_setup import get_switch_expected
from functools import wraps
try:
from functools import wraps
except ImportError:
wraps = lambda *args: (lambda x: x)
VERBOSE = sys.argv.count('-v') > 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment