Commit 5018e487 authored by Denis Bilenko's avatar Denis Bilenko

Merge pull request #396 from fantix/test_support

Remove test_support.py
parents e5a399f2 074425f4
import unittest import unittest
import test_support from test import test_support
import os import os
import socket import socket
......
...@@ -5,7 +5,10 @@ from gevent import queue as Queue ...@@ -5,7 +5,10 @@ from gevent import queue as Queue
import threading import threading
import time import time
import unittest import unittest
import test_support try:
from test import support as test_support
except ImportError:
from test import test_support
from six import xrange from six import xrange
QUEUE_SIZE = 5 QUEUE_SIZE = 5
......
This diff is collapsed.
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