- Timestamp:
- Feb 16, 2014, 7:32:21 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/setup.py
r1211 r1247 66 66 67 67 if Feature: 68 # Optional C extension module for speeding up Genshi: 69 # Not activated by default on: 70 # - PyPy (where it harms performance) 71 # - CPython >= 3.3 (the new Unicode C API is not supported yet) 68 72 speedups = Feature( 69 73 "optional C speed-enhancements", 70 standard = not is_pypy ,74 standard = not is_pypy and sys.version_info < (3, 3), 71 75 ext_modules = [ 72 76 Extension('genshi._speedups', ['genshi/_speedups.c']),
Note: See TracChangeset
for help on using the changeset viewer.
