blob: 1b34b5af5142aafbddcf0c40ebacc7d0d998cb92 (
plain)
1
2
3
4
5
6
7
8
9
|
try:
# For test cases, avoid the following UserWarning to stderr:
# You don't have the C version of NameMapper installed ...
from Cheetah import NameMapper as _nm
_nm.C_VERSION = True
except ImportError:
pass
# vi: ts=4 expandtab
|