[Zope-Checkins] CVS: Packages/ZServer - __init__.py:1.24

Fred L. Drake, Jr. fdrake@acm.org
Tue, 26 Feb 2002 15:01:35 -0500


Update of /cvs-repository/Packages/ZServer
In directory cvs.zope.org:/tmp/cvs-serv28228

Modified Files:
	__init__.py 
Log Message:
*Again*, try to remove that annoying warning about the FCNTL module.
Shane, I'm going to beg you to help me get my test setup cleaned up
tomorrow!


=== Packages/ZServer/__init__.py 1.23 => 1.24 ===
 # processes from Zope code. Thanks to Dieter Maurer for this.
 try:
-    import fcntl, FCNTL
+    import fcntl
     if not (hasattr(fcntl, 'F_SETFD') and hasattr(fcntl, 'FD_CLOEXEC')):
         # hack to be compatible with Python versions pre-2.2
         import FCNTL