[Python-checkins] r63719 - python/trunk/Include/warnings.h

benjamin.peterson python-checkins at python.org
Mon May 26 21:37:11 CEST 2008


Author: benjamin.peterson
Date: Mon May 26 21:37:11 2008
New Revision: 63719

Log:
wrap line


Modified:
   python/trunk/Include/warnings.h

Modified: python/trunk/Include/warnings.h
==============================================================================
--- python/trunk/Include/warnings.h	(original)
+++ python/trunk/Include/warnings.h	Mon May 26 21:37:11 2008
@@ -10,7 +10,8 @@
 PyAPI_FUNC(int) PyErr_WarnExplicit(PyObject *, const char *, const char *, int,
                                     const char *, PyObject *);
 
-#define PyErr_WarnPy3k(msg, stacklevel) (Py_Py3kWarningFlag ? PyErr_WarnEx(PyExc_DeprecationWarning, msg, stacklevel) : 0)
+#define PyErr_WarnPy3k(msg, stacklevel) \
+  (Py_Py3kWarningFlag ? PyErr_WarnEx(PyExc_DeprecationWarning, msg, stacklevel) : 0)
 
 /* DEPRECATED: Use PyErr_WarnEx() instead. */
 #define PyErr_Warn(category, msg) PyErr_WarnEx(category, msg, 1)


More information about the Python-checkins mailing list