You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
386 B
17 lines
386 B
12 years ago
|
#!/usr/bin/env python
|
||
|
"""Python codec for CSS."""
|
||
|
__docformat__ = 'restructuredtext'
|
||
|
__author__ = 'Walter Doerwald'
|
||
|
__version__ = '$Id: util.py 1114 2008-03-05 13:22:59Z cthedot $'
|
||
|
|
||
|
import sys
|
||
|
|
||
|
if sys.version_info < (3,):
|
||
|
from _codec2 import *
|
||
|
# for tests
|
||
|
from _codec2 import _fixencoding
|
||
|
else:
|
||
|
from _codec3 import *
|
||
|
# for tests
|
||
|
from _codec3 import _fixencoding
|