summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorR. Tyler Ballance <tyler@slide.com>2009-08-31 11:42:40 -0700
committerR. Tyler Ballance <tyler@slide.com>2009-08-31 11:42:40 -0700
commit9f172d3d7d1e24109332e2b22697887414217a3a (patch)
tree093983f41c75e65a56ddec4ed4e240b130602c21
parentc9c2e892447bc37c1fe59e24dc8bb25f48c0187a (diff)
parentc7da1e012425c3fd53b86f9a67351bce21c2b9cd (diff)
downloadpython-cheetah-9f172d3d7d1e24109332e2b22697887414217a3a.tar.gz
Merge branch 'next' of git@github.com:rtyler/cheetah into next
-rw-r--r--SetupConfig.py4
-rw-r--r--bin/.gitattributes1
-rw-r--r--bin/cheetah.bat1
-rwxr-xr-xcheetah/Tests/Test.py2
4 files changed, 2 insertions, 6 deletions
diff --git a/SetupConfig.py b/SetupConfig.py
index bcf5ca3..3848f22 100644
--- a/SetupConfig.py
+++ b/SetupConfig.py
@@ -33,7 +33,6 @@ package_dir = {'Cheetah':'cheetah'}
import os
import os.path
-import sys
from distutils.core import Extension
ext_modules=[
@@ -52,9 +51,6 @@ scripts = ['bin/cheetah-compile',
'bin/cheetah',
]
-if sys.platform == "win32":
- scripts.append('bin/cheetah.bat')
-
data_files = ['recursive: src *.tmpl *.txt LICENSE README TODO CHANGES',]
if not os.getenv('CHEETAH_INSTALL_WITHOUT_SETUPTOOLS'):
diff --git a/bin/.gitattributes b/bin/.gitattributes
deleted file mode 100644
index 5bebad2..0000000
--- a/bin/.gitattributes
+++ /dev/null
@@ -1 +0,0 @@
-cheetah.bat -crlf
diff --git a/bin/cheetah.bat b/bin/cheetah.bat
deleted file mode 100644
index 3f6cf2a..0000000
--- a/bin/cheetah.bat
+++ /dev/null
@@ -1 +0,0 @@
-@"%~dp0..\python" "%~dpn0" %*
diff --git a/cheetah/Tests/Test.py b/cheetah/Tests/Test.py
index fe97ff4..eb12cc8 100755
--- a/cheetah/Tests/Test.py
+++ b/cheetah/Tests/Test.py
@@ -19,6 +19,7 @@ import SyntaxAndOutput
import NameMapper
import Template
import CheetahWrapper
+import Cheps
import Regressions
import Unicode
@@ -28,6 +29,7 @@ suites = [
unittest.findTestCases(Template),
unittest.findTestCases(Regressions),
unittest.findTestCases(Unicode),
+ unittest.findTestCases(Cheps),
]
if not sys.platform.startswith('java'):