summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorR. Tyler Ballance <tyler@slide.com>2009-06-28 10:29:40 +0800
committerJames Abbatiello <abbeyj@gmail.com>2009-06-28 12:17:45 +0800
commitb8b54bcce165a0636f22af07c5efc7b0ac311874 (patch)
tree29718e2f80eda329ab89d62873dc43d14506a641
parent72a0cc93817385c75d703caf2549fdf7625b9f64 (diff)
downloadpython-cheetah-b8b54bcce165a0636f22af07c5efc7b0ac311874.tar.gz
Remove the "Unspecified" module
I've made this a separate commit so I can revert if third parties are relying on this module to exist in Cheetah (see mailing list thread titled: "[Cheetahtemplate-discuss] Are you using the Unspecified class") Signed-off-by: James Abbatiello <abbeyj@gmail.com>
-rw-r--r--src/Unspecified.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/Unspecified.py b/src/Unspecified.py
deleted file mode 100644
index 89c5176..0000000
--- a/src/Unspecified.py
+++ /dev/null
@@ -1,9 +0,0 @@
-try:
- from ds.sys.Unspecified import Unspecified
-except ImportError:
- class _Unspecified:
- def __repr__(self):
- return 'Unspecified'
- def __str__(self):
- return 'Unspecified'
- Unspecified = _Unspecified()