[Zope3-checkins] CVS: Zope3 - setup.py:1.32
Fred L. Drake, Jr.
fred@zope.com
Mon, 9 Jun 2003 13:39:50 -0400
Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv19308
Modified Files:
setup.py
Log Message:
Add the "csv" module from Python 2.3 to our Python 2.2 compatibility support.
=== Zope3/setup.py 1.31 => 1.32 ===
--- Zope3/setup.py:1.31 Wed May 28 11:45:36 2003
+++ Zope3/setup.py Mon Jun 9 13:39:19 2003
@@ -237,6 +237,10 @@
["src/zope/hookable/_zope_hookable.c"])
]
+if sys.version_info >= (2, 2):
+ ext_modules.append(Extension("pythonlib.compat22._csv",
+ ["src/pythonlib/compat22/_csv.c"]))
+
# On Window, there are more extensions that need to be built
if sys.platform == "win32":
ext_modules += [Extension("zodb.winlock", ["src/zodb/winlock.c"])]