Commit d69bd23b authored by Claude Paroz's avatar Claude Paroz
Browse files

Fixed Python version check in testcases.py

parent fcc8de05
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -917,7 +917,7 @@ class QuietWSGIRequestHandler(WSGIRequestHandler):
        pass


if sys.version_info >= (2, 6, 0):
if sys.version_info >= (2, 7, 0):
    _ImprovedEvent = threading._Event
else:
    class _ImprovedEvent(threading._Event):