summaryrefslogtreecommitdiff
path: root/SetupConfig.py
diff options
context:
space:
mode:
authorR. Tyler Ballance <tyler@slide.com>2009-06-21 15:11:22 -0700
committerR. Tyler Ballance <tyler@slide.com>2009-06-21 15:11:22 -0700
commit23487def3a0bce57d9db55c7f44e4a36612301a3 (patch)
tree97bb8d2c4124f4336636618bbb644267f30dfc38 /SetupConfig.py
parentdd2e9d479daea23685b011427a7a1610ac77339b (diff)
downloadpython-cheetah-23487def3a0bce57d9db55c7f44e4a36612301a3.tar.gz
Add the beginnings of work on a VerifyType C module
This should help improve performance for dynamic compilation, still highly experimental right now
Diffstat (limited to 'SetupConfig.py')
-rw-r--r--SetupConfig.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/SetupConfig.py b/SetupConfig.py
index e660c7b..fcbe9db 100644
--- a/SetupConfig.py
+++ b/SetupConfig.py
@@ -39,8 +39,11 @@ from distutils.core import Extension
## we only assume the presence of a c compiler on Posix systems, NT people will
# have to enable this manually.
if os.name == 'posix':
- ext_modules=[Extension("Cheetah._namemapper", [os.path.join("src", 'c', "_namemapper.c")]
- )
+ ext_modules=[Extension("Cheetah._namemapper",
+ [os.path.join('src', 'c', '_namemapper.c')],
+ ),
+ Extension("Cheetah._verifytype",
+ [os.path.join('src', 'c', '_verifytype.c')]),
]
else:
ext_modules=[]