Commit 069c4d34 authored by Jim Fulton's avatar Jim Fulton

cleaned up some imports

parent ef7fe698
...@@ -54,12 +54,12 @@ ...@@ -54,12 +54,12 @@
"""HTML formated DocumentTemplates """HTML formated DocumentTemplates
$Id: DT_HTML.py,v 1.10 1998/09/08 15:05:30 jim Exp $""" $Id: DT_HTML.py,v 1.11 1998/09/08 16:12:23 jim Exp $"""
from DT_String import String, FileMixin from DT_String import String, FileMixin
import DT_String, regex import DT_String, regex
from DT_Util import ParseError, str from DT_Util import ParseError, str
from string import strip, find, split, join from string import strip, find, split, join, rfind
class dtml_re_class: class dtml_re_class:
......
...@@ -51,11 +51,11 @@ ...@@ -51,11 +51,11 @@
# (540) 371-6909 # (540) 371-6909
# #
############################################################################## ##############################################################################
'''$Id: DT_Util.py,v 1.44 1998/09/08 16:06:53 jim Exp $''' '''$Id: DT_Util.py,v 1.45 1998/09/08 16:12:23 jim Exp $'''
__version__='$Revision: 1.44 $'[11:-2] __version__='$Revision: 1.45 $'[11:-2]
import regex, string, math, os import regex, string, math, os
from string import rfind, strip, join, atoi,lower,capitalize,split,find from string import strip, join, atoi, lower, split, find
import VSEval import VSEval
str=__builtins__['str'] # Waaaaa, waaaaaaaa needed for pickling waaaaa str=__builtins__['str'] # Waaaaa, waaaaaaaa needed for pickling waaaaa
......
...@@ -164,12 +164,12 @@ Evaluating expressions without rendering results ...@@ -164,12 +164,12 @@ Evaluating expressions without rendering results
''' # ' ''' # '
__rcs_id__='$Id: DT_Var.py,v 1.19 1998/09/08 15:55:46 jim Exp $' __rcs_id__='$Id: DT_Var.py,v 1.20 1998/09/08 16:12:24 jim Exp $'
__version__='$Revision: 1.19 $'[11:-2] __version__='$Revision: 1.20 $'[11:-2]
from DT_Util import parse_params, name_param, html_quote, str from DT_Util import parse_params, name_param, html_quote, str
import regex, string, sys, regex import regex, string, sys, regex
from string import find, split, join, atoi from string import find, split, join, atoi, rfind
class Var: class Var:
name='var' name='var'
...@@ -390,6 +390,9 @@ class Comment: ...@@ -390,6 +390,9 @@ class Comment:
############################################################################ ############################################################################
# $Log: DT_Var.py,v $ # $Log: DT_Var.py,v $
# Revision 1.20 1998/09/08 16:12:24 jim
# cleaned up some imports
#
# Revision 1.19 1998/09/08 15:55:46 jim # Revision 1.19 1998/09/08 15:55:46 jim
# Added atoi to string import. # Added atoi to string import.
# #
......
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