You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
337 B
Python
23 lines
337 B
Python
# 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
|
|
|
|
|
|
|