[Zodb-checkins] CVS: ZODB3/ZConfig - info.py:1.18
Jeremy Hylton
jeremy at zope.com
Thu Oct 2 16:41:43 EDT 2003
Update of /cvs-repository/ZODB3/ZConfig
In directory cvs.zope.org:/tmp/cvs-serv10494/ZConfig
Modified Files:
info.py
Log Message:
ZConfig still wants to work with Python 2.1
=== ZODB3/ZConfig/info.py 1.17 => 1.18 ===
--- ZODB3/ZConfig/info.py:1.17 Thu Oct 2 16:17:52 2003
+++ ZODB3/ZConfig/info.py Thu Oct 2 16:41:43 2003
@@ -16,6 +16,13 @@
import ZConfig
+try:
+ True
+except NameError:
+ True = 1
+ False = 0
+
+
class UnboundedThing:
__metaclass__ = type
__slots__ = ()
More information about the Zodb-checkins
mailing list