[Zope-CVS] CVS: Packages/pypes/pypes - expression.py:1.10

Casey Duncan casey at zope.com
Tue Apr 13 00:17:14 EDT 2004


Update of /cvs-repository/Packages/pypes/pypes
In directory cvs.zope.org:/tmp/cvs-serv21232

Modified Files:
	expression.py 
Log Message:
Update expression constructor docstring


=== Packages/pypes/pypes/expression.py 1.9 => 1.10 ===
--- Packages/pypes/pypes/expression.py:1.9	Tue Apr 13 00:15:28 2004
+++ Packages/pypes/pypes/expression.py	Tue Apr 13 00:17:12 2004
@@ -30,10 +30,10 @@
     
     def __init__(self, expr, namespace=None):
         """Create and expression from the string expr, which must be a valid
-        Python expression. The expression is parsed and names used in it are
-        taken from the namespace mapping and stored. Names not in namespace
-        must be provided when calling the expression unless they are built-in
-        names
+        Python expression. The expression is parsed and compiled and the names
+        used in it are taken from the namespace mapping and stored. Names not
+        in namespace must be provided when calling the expression unless they
+        are built-in names
         """
         self._expr = expr
         self._setAst(parse(expr, mode='eval'))




More information about the Zope-CVS mailing list