[Zope3-checkins] SVN: Zope3/trunk/ Fixed issue 366.

Stephan Richter srichter at cosmos.phy.tufts.edu
Sat Feb 26 10:20:59 EST 2005


Log message for revision 29313:
  Fixed issue 366.
  
  Verified that it compiles on my Linux box, which is not an AMD 64 with GCC 
  4.0, but I am pretty sure Marius did this check already. No need to create 
  new binaries for Tim, since it is a GCC problem only.
  
  

Changed:
  U   Zope3/trunk/doc/CHANGES.txt
  U   Zope3/trunk/src/zope/interface/_zope_interface_coptimizations.c

-=-
Modified: Zope3/trunk/doc/CHANGES.txt
===================================================================
--- Zope3/trunk/doc/CHANGES.txt	2005-02-26 15:12:42 UTC (rev 29312)
+++ Zope3/trunk/doc/CHANGES.txt	2005-02-26 15:20:59 UTC (rev 29313)
@@ -461,6 +461,10 @@
 
     Bug Fixes
 
+      - Fixed issue #366 (_zope_interface_coptimizations.c compilation error)
+
+      - Fixed issue #368 (Typo fix in src/zope/app/container/constraints.py)
+
       - Fixed issue #329 (apidoc + TAL)
 
       - Object copy events weren't dispatched for object sublocations.

Modified: Zope3/trunk/src/zope/interface/_zope_interface_coptimizations.c
===================================================================
--- Zope3/trunk/src/zope/interface/_zope_interface_coptimizations.c	2005-02-26 15:12:42 UTC (rev 29312)
+++ Zope3/trunk/src/zope/interface/_zope_interface_coptimizations.c	2005-02-26 15:20:59 UTC (rev 29313)
@@ -70,7 +70,7 @@
   return 0;
 }
 
-extern PyTypeObject SpecType;   /* Forward */
+static PyTypeObject SpecType;   /* Forward */
 
 static PyObject *
 implementedByFallback(PyObject *cls)



More information about the Zope3-Checkins mailing list