diff options
| author | Slávek Banko <slavek.banko@axis.cz> | 2021-03-26 13:52:33 +0100 |
|---|---|---|
| committer | Slávek Banko <slavek.banko@axis.cz> | 2021-03-26 13:52:33 +0100 |
| commit | 0f27805eedcc40ae34009aa31a4dc08cb949f867 (patch) | |
| tree | 8b1c8995d7fdab97acde4bd7c63f96d378c34d02 /debian/pyrex/pyrex-0.9.9/Pyrex/Distutils/__init__.py | |
| parent | bad411472a12b93f8bfca6b7ca52d89488a8d8ce (diff) | |
| download | extra-dependencies-0f27805eedcc40ae34009aa31a4dc08cb949f867.tar.gz extra-dependencies-0f27805eedcc40ae34009aa31a4dc08cb949f867.zip | |
DEB pyrex: Added to repository.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'debian/pyrex/pyrex-0.9.9/Pyrex/Distutils/__init__.py')
| -rw-r--r-- | debian/pyrex/pyrex-0.9.9/Pyrex/Distutils/__init__.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/debian/pyrex/pyrex-0.9.9/Pyrex/Distutils/__init__.py b/debian/pyrex/pyrex-0.9.9/Pyrex/Distutils/__init__.py new file mode 100644 index 00000000..49493bf2 --- /dev/null +++ b/debian/pyrex/pyrex-0.9.9/Pyrex/Distutils/__init__.py @@ -0,0 +1,11 @@ +# July 2002, Graham Fawcett +# +# this hack was inspired by the way Thomas Heller got py2exe +# to appear as a distutil command +# +# we replace distutils.command.build_ext with our own version +# and keep the old one under the module name _build_ext, +# so that *our* build_ext can make use of it. + +from build_ext import build_ext +from extension import Extension |
