diff options
| author | ?ric Araujo <merwok@netwok.org> | 2011-10-08 03:51:57 +0200 |
|---|---|---|
| committer | ?ric Araujo <merwok@netwok.org> | 2011-10-08 03:51:57 +0200 |
| commit | 1731b8b24f8e66fa031802098f360d85d6f192fa (patch) | |
| tree | 80128e717315b8d5116e57e9c734a9f65150799c /distutils2/tests | |
| parent | 2a99c678a8679e13f734e94cb107ac6c36f108db (diff) | |
| download | disutils2-1731b8b24f8e66fa031802098f360d85d6f192fa.tar.gz | |
Fix byte-compilation to comply with PEP 3147 on Python 3.2+ (#11254).
I want to replace custom byte-compiling function with calls to
compileall before 1.0, but in the short term it?s good to have this
fixed.
Adapted from the distutils patch by Jeff Ramnani. Tested with -B, -O
and -OO on 3.1, 3.2 and 3.3.
Diffstat (limited to 'distutils2/tests')
| -rw-r--r-- | distutils2/tests/test_command_build_py.py | 15 | ||||
| -rw-r--r-- | distutils2/tests/test_command_install_lib.py | 14 |
2 files changed, 23 insertions, 6 deletions
diff --git a/distutils2/tests/test_command_build_py.py b/distutils2/tests/test_command_build_py.py index 7351890..fa152ec 100644 --- a/distutils2/tests/test_command_build_py.py +++ b/distutils2/tests/test_command_build_py.py @@ -2,6 +2,7 @@ import os import sys +import imp from distutils2.command.build_py import build_py from distutils2.dist import Distribution @@ -58,13 +59,21 @@ class BuildPyTestCase(support.TempdirManager, self.assertEqual(len(cmd.get_outputs()), 3) pkgdest = os.path.join(destination, "pkg") files = os.listdir(pkgdest) + pycache_dir = os.path.join(pkgdest, "__pycache__") self.assertIn("__init__.py", files) self.assertIn("README.txt", files) - # XXX even with -O, distutils writes pyc, not pyo; bug? if sys.dont_write_bytecode: - self.assertNotIn("__init__.pyc", files) + if sys.version_info[1] == 1: + self.assertNotIn("__init__.pyc", files) + else: + self.assertFalse(os.path.exists(pycache_dir)) else: - self.assertIn("__init__.pyc", files) + # XXX even with -O, distutils2 writes pyc, not pyo; bug? + if sys.version_info[1] == 1: + self.assertIn("__init__.pyc", files) + else: + pyc_files = os.listdir(pycache_dir) + self.assertIn("__init__.%s.pyc" % imp.get_tag(), pyc_files) def test_empty_package_dir(self): # See SF 1668596/1720897. diff --git a/distutils2/tests/test_command_install_lib.py b/distutils2/tests/test_command_install_lib.py index 8216de0..78b539c 100644 --- a/distutils2/tests/test_command_install_lib.py +++ b/distutils2/tests/test_command_install_lib.py @@ -1,6 +1,7 @@ """Tests for distutils2.command.install_data.""" -import sys import os +import sys +import imp from distutils2.tests import unittest, support from distutils2.command.install_lib import install_lib @@ -36,6 +37,7 @@ class InstallLibTestCase(support.TempdirManager, @unittest.skipIf(sys.dont_write_bytecode, 'byte-compile disabled') def test_byte_compile(self): pkg_dir, dist = self.create_dist() + os.chdir(pkg_dir) cmd = install_lib(dist) cmd.compile = True cmd.optimize = 1 @@ -43,8 +45,14 @@ class InstallLibTestCase(support.TempdirManager, f = os.path.join(pkg_dir, 'foo.py') self.write_file(f, '# python file') cmd.byte_compile([f]) - self.assertTrue(os.path.exists(os.path.join(pkg_dir, 'foo.pyc'))) - self.assertTrue(os.path.exists(os.path.join(pkg_dir, 'foo.pyo'))) + if sys.version_info[1] == 1: + pyc_file = 'foo.pyc' + pyo_file = 'foo.pyo' + else: + pyc_file = imp.cache_from_source('foo.py') + pyo_file = imp.cache_from_source('foo.py', debug_override=False) + self.assertTrue(os.path.exists(pyc_file)) + self.assertTrue(os.path.exists(pyo_file)) def test_get_outputs(self): pkg_dir, dist = self.create_dist() |
