[Zodb-checkins] CVS: Zope3/src/zope/interface - _zope_interface_ospec.c:1.2

Jim Fulton jim at zope.com
Thu May 15 18:56:31 EDT 2003


Update of /cvs-repository/Zope3/src/zope/interface
In directory cvs.zope.org:/tmp/cvs-serv9876

Modified Files:
	_zope_interface_ospec.c 
Log Message:
Fixed an == that was supposed to be an =.


=== Zope3/src/zope/interface/_zope_interface_ospec.c 1.1 => 1.2 ===
--- Zope3/src/zope/interface/_zope_interface_ospec.c:1.1	Thu May 15 15:07:44 2003
+++ Zope3/src/zope/interface/_zope_interface_ospec.c	Thu May 15 17:56:30 2003
@@ -266,7 +266,7 @@
       /* We have a provided sig, but the class sig was None, so make class
          sig NULL  */
       Py_DECREF(sig);
-      sig == NULL;
+      sig = NULL;
     }
 
   if (sig != NULL)




More information about the Zodb-checkins mailing list