[Python-3000-checkins] r57796 - python/branches/py3k/Include/pyerrors.h

collin.winter python-3000-checkins at python.org
Fri Aug 31 02:59:38 CEST 2007


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;
 


More information about the Python-3000-checkins mailing list