Move windows distutils hack to the correct place.
authorRobert Bradshaw <robertwb@math.washington.edu>
Sun, 30 Jan 2011 11:03:36 +0000 (03:03 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Fri, 4 Feb 2011 09:57:42 +0000 (01:57 -0800)
runtests.py

index 59ddc4afac6c72309e0c2f4b523d3000438ee2c0..11bfa742193117f971452d99edcd1db85d222c98 100644 (file)
@@ -26,6 +26,13 @@ try:
 except ImportError: # No threads, no problems
     threading = None
 
+WITH_CYTHON = True
+
+from distutils.dist import Distribution
+from distutils.core import Extension
+from distutils.command.build_ext import build_ext as _build_ext
+distutils_distro = Distribution()
+
 if sys.platform == 'win32':
     # TODO: Figure out why this hackery (see http://thread.gmane.org/gmane.comp.python.cython.devel/8280/).
     config_files = distutils_distro.find_config_files()
@@ -38,14 +45,6 @@ if sys.platform == 'win32':
     except ValueError: pass
     distutils_distro.parse_config_files(cfgfiles)
 
-
-WITH_CYTHON = True
-
-from distutils.dist import Distribution
-from distutils.core import Extension
-from distutils.command.build_ext import build_ext as _build_ext
-distutils_distro = Distribution()
-
 TEST_DIRS = ['compile', 'errors', 'run', 'wrappers', 'pyregr', 'build']
 TEST_RUN_DIRS = ['run', 'wrappers', 'pyregr']