blob: 49493bf2fb9a7a3049c99710ef81af5054ee3d4c (
plain)
1
2
3
4
5
6
7
8
9
10
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
|