Author: collin.winter
Date: Fri Aug 31 02:59:38 2007
New Revision: 57796

Modified:
   python/branches/py3k/Include/pyerrors.h
Log:
Fix a compile error on Windows.

Modified: python/branches/py3k/Include/pyerrors.h
==============================================================================
--- python/branches/py3k/Include/pyerrors.h     (original)
+++ python/branches/py3k/Include/pyerrors.h     Fri Aug 31 02:59:38 2007
@@ -7,7 +7,7 @@
 /* Error objects */
 
 /* PyException_HEAD defines the initial segment of every exception class. */
-#define PyException_HEAD PyObject_HEAD; PyObject *dict;\
+#define PyException_HEAD PyObject_HEAD PyObject *dict;\
                          PyObject *args; PyObject *traceback;\
                          PyObject *context; PyObject *cause;
 
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to