File: build_ext.py

package info (click to toggle)
python-setuptools 0.0.1.041214-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 232 kB
  • ctags: 264
  • sloc: python: 931; makefile: 37
file content (6 lines) | stat: -rw-r--r-- 193 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
# Attempt to use Pyrex for building extensions, if available

try:
    from Pyrex.Distutils.build_ext import build_ext
except ImportError:
    from distutils.command.build_ext import build_ext