Commit 25840c8b authored by Jeremy Hylton's avatar Jeremy Hylton

Whitespace and docstring normalization.

parent 4ca1105a
...@@ -10,13 +10,12 @@ ...@@ -10,13 +10,12 @@
# FOR A PARTICULAR PURPOSE # FOR A PARTICULAR PURPOSE
# #
############################################################################## ##############################################################################
__doc__='''Python implementations of document template some features """Python implementations of document template some features
$Id: pDocumentTemplate.py,v 1.38 2002/09/24 22:09:47 jeremy Exp $"""
__version__='$Revision: 1.38 $'[11:-2]
$Id: pDocumentTemplate.py,v 1.37 2002/09/24 22:07:31 jeremy Exp $''' import sys, types
__version__='$Revision: 1.37 $'[11:-2]
import sys, types
ClassTypes = [types.ClassType] ClassTypes = [types.ClassType]
...@@ -39,7 +38,6 @@ def safe_callable(ob): ...@@ -39,7 +38,6 @@ def safe_callable(ob):
else: else:
return callable(ob) return callable(ob)
StringType=type('') StringType=type('')
UnicodeType=type(u'') UnicodeType=type(u'')
TupleType=type(()) TupleType=type(())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment