Commit d10ec59d authored by Jim Fulton's avatar Jim Fulton

Added rand and whrand.

parent 5eab01db
'''$Id: DT_Util.py,v 1.21 1998/01/12 16:48:40 jim Exp $''' '''$Id: DT_Util.py,v 1.22 1998/01/13 19:35:55 jim Exp $'''
############################################################################ ############################################################################
# Copyright # Copyright
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
# (540) 371-6909 # (540) 371-6909
# #
############################################################################ ############################################################################
__version__='$Revision: 1.21 $'[11:-2] __version__='$Revision: 1.22 $'[11:-2]
import sys, regex, string, types, math, os import sys, regex, string, types, math, os
from string import rfind, strip, joinfields, atoi,lower,upper,capitalize from string import rfind, strip, joinfields, atoi,lower,upper,capitalize
...@@ -129,6 +129,8 @@ for name in ('None', 'abs', 'chr', 'divmod', 'float', 'hash', 'hex', 'int', ...@@ -129,6 +129,8 @@ for name in ('None', 'abs', 'chr', 'divmod', 'float', 'hash', 'hex', 'int',
d[name]=__builtins__[name] d[name]=__builtins__[name]
d['string']=string d['string']=string
d['math']=math d['math']=math
d['rand']=math
d['whrand']=math
def test(*args): def test(*args):
l=len(args) l=len(args)
...@@ -302,6 +304,9 @@ except: from pDocumentTemplate import InstanceDict, TemplateDict, render_blocks ...@@ -302,6 +304,9 @@ except: from pDocumentTemplate import InstanceDict, TemplateDict, render_blocks
############################################################################ ############################################################################
# $Log: DT_Util.py,v $ # $Log: DT_Util.py,v $
# Revision 1.22 1998/01/13 19:35:55 jim
# Added rand and whrand.
#
# Revision 1.21 1998/01/12 16:48:40 jim # Revision 1.21 1998/01/12 16:48:40 jim
# Fixed error reporting bug. # Fixed error reporting bug.
# #
......
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