Skip to content

Commit

Permalink
Got rid of non-needed and non-portable import of new.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Fulton committed Nov 21, 1997
1 parent 9b3faa7 commit 78385ee
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions VSEval.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

"""Very Safe Python Expressions
"""
__rcs_id__='$Id: VSEval.py,v 1.8 1997/11/11 18:13:49 jim Exp $'
__rcs_id__='$Id: VSEval.py,v 1.9 1997/11/21 16:47:11 jim Exp $'

############################################################################
# Copyright
Expand All @@ -11,10 +11,10 @@
# rights reserved.
#
############################################################################
__version__='$Revision: 1.8 $'[11:-2]
__version__='$Revision: 1.9 $'[11:-2]

from string import join
import new, sys, gparse
import sys, gparse

def default_slicer(env, s, *ind):
l=len(ind)
Expand Down Expand Up @@ -118,6 +118,9 @@ def __call__(self, **kw):
############################################################################
#
# $Log: VSEval.py,v $
# Revision 1.9 1997/11/21 16:47:11 jim
# Got rid of non-needed and non-portable import of new.
#
# Revision 1.8 1997/11/11 18:13:49 jim
# updated expr machinery to use parse-tree manipulation
#
Expand Down

0 comments on commit 78385ee

Please sign in to comment.