[Zope3-checkins] CVS: Zope3/src/zope/documenttemplate - dt_in.py:1.3 dt_insv.py:1.3
Guido van Rossum
guido@python.org
Fri, 27 Dec 2002 15:07:25 -0500
Update of /cvs-repository/Zope3/src/zope/documenttemplate
In directory cvs.zope.org:/tmp/cvs-serv21264
Modified Files:
dt_in.py dt_insv.py
Log Message:
Get rid of bogus references to module Missing.
=== Zope3/src/zope/documenttemplate/dt_in.py 1.2 => 1.3 ===
--- Zope3/src/zope/documenttemplate/dt_in.py:1.2 Wed Dec 25 09:13:36 2002
+++ Zope3/src/zope/documenttemplate/dt_in.py Fri Dec 27 15:06:53 2002
@@ -297,8 +297,7 @@
standard-deviation-n -- The standard deviation of numeric
values computed with a degrees of freedom equal to the count.
- Missing values are either 'None' or the attribute 'Value'
- of the module 'Missing', if present.
+ Missing values are 'None'.
'else' continuation tag within in
=== Zope3/src/zope/documenttemplate/dt_insv.py 1.2 => 1.3 ===
--- Zope3/src/zope/documenttemplate/dt_insv.py:1.2 Wed Dec 25 09:13:36 2002
+++ Zope3/src/zope/documenttemplate/dt_insv.py Fri Dec 27 15:06:53 2002
@@ -19,10 +19,7 @@
from math import sqrt
from types import IntType, TupleType
-try:
- import Missing
- mv = Missing.Value
-except: mv = None
+mv = None # Missing value
class sequence_variables: