Commit 319814a0 authored by Petr Viktorin's avatar Petr Viktorin

2to3: Run the 'import' fixer

parent 512c8411
lib2to3.fixes.fix_basestring lib2to3.fixes.fix_basestring
lib2to3.fixes.fix_dict lib2to3.fixes.fix_dict
lib2to3.fixes.fix_future lib2to3.fixes.fix_future
lib2to3.fixes.fix_import
lib2to3.fixes.fix_imports lib2to3.fixes.fix_imports
lib2to3.fixes.fix_isinstance lib2to3.fixes.fix_isinstance
lib2to3.fixes.fix_itertools lib2to3.fixes.fix_itertools
......
...@@ -14,8 +14,8 @@ import gdb ...@@ -14,8 +14,8 @@ import gdb
from Cython.Debugger import libcython from Cython.Debugger import libcython
from Cython.Debugger import libpython from Cython.Debugger import libpython
import test_libcython_in_gdb from . import test_libcython_in_gdb
from test_libcython_in_gdb import _debug, inferior_python_version from .test_libcython_in_gdb import _debug, inferior_python_version
class TestPrettyPrinters(test_libcython_in_gdb.DebugTestCase): class TestPrettyPrinters(test_libcython_in_gdb.DebugTestCase):
......
# The original Tempita implements all of its templating code here. # The original Tempita implements all of its templating code here.
# Moved it to _tempita.py to make the compilation portable. # Moved it to _tempita.py to make the compilation portable.
from _tempita import * from ._tempita import *
from pyximport import * from .pyximport import *
# replicate docstring # replicate docstring
from pyximport import __doc__ from .pyximport import __doc__
...@@ -153,5 +153,5 @@ def pyx_to_dll(filename, ext = None, force_rebuild = 0, ...@@ -153,5 +153,5 @@ def pyx_to_dll(filename, ext = None, force_rebuild = 0,
if __name__=="__main__": if __name__=="__main__":
pyx_to_dll("dummy.pyx") pyx_to_dll("dummy.pyx")
import test from . import test
...@@ -177,7 +177,7 @@ def build_module(name, pyxfilename, pyxbuild_dir=None, inplace=False, language_l ...@@ -177,7 +177,7 @@ def build_module(name, pyxfilename, pyxbuild_dir=None, inplace=False, language_l
sargs.update(setup_args) sargs.update(setup_args)
build_in_temp=sargs.pop('build_in_temp',build_in_temp) build_in_temp=sargs.pop('build_in_temp',build_in_temp)
import pyxbuild from . import pyxbuild
so_path = pyxbuild.pyx_to_dll(pyxfilename, extension_mod, so_path = pyxbuild.pyx_to_dll(pyxfilename, extension_mod,
build_in_temp=build_in_temp, build_in_temp=build_in_temp,
pyxbuild_dir=pyxbuild_dir, pyxbuild_dir=pyxbuild_dir,
......
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