diff options
author | Robert Bradshaw <robertwb@gmail.com> | 2016-10-26 14:00:02 -0700 |
---|---|---|
committer | Robert Bradshaw <robertwb@gmail.com> | 2016-10-26 14:00:02 -0700 |
commit | bd4889fe5ab320368d408c433e158c71222158a9 (patch) | |
tree | c20587f05c848f71f46678386cd6d1e9c78864a4 /Cython/Distutils/build_ext.py | |
parent | 0c5fe4bde81af0ac2ab6ea2f1ac9e6410fec0f3a (diff) | |
parent | 741ebbd011d83e26ec919cf7444b7c6964fca438 (diff) | |
download | cython-0.25.1b1.tar.gz |
Merge branch '0.25.x'0.25.1b1
Diffstat (limited to 'Cython/Distutils/build_ext.py')
-rw-r--r-- | Cython/Distutils/build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Distutils/build_ext.py b/Cython/Distutils/build_ext.py index 8b8722ea9..d32c0ee6d 100644 --- a/Cython/Distutils/build_ext.py +++ b/Cython/Distutils/build_ext.py @@ -20,4 +20,4 @@ class new_build_ext(_build_ext, object): super(build_ext, self).finalize_options() # This will become new_build_ext in the future. -from Cython.Distutils.old_build_ext as build_ext +from .old_build_ext import old_build_ext as build_ext |