diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-03-17 06:56:11 +0200 |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-03-17 06:56:11 +0200 |
commit | 8589863678cdd057f57d70d2763e30677426c28c (patch) | |
tree | 577e88e48d01016cbcaa14861ceb0ba212ca3cb6 /Python/errors.c | |
parent | 34c9cb691ecc6edc6da25fdd6366bf14cc6516b3 (diff) | |
parent | a72a90257a8f99f462cdaa0143a13b3f278e1b80 (diff) | |
download | cpython-8589863678cdd057f57d70d2763e30677426c28c.tar.gz |
Issue #23682: Delete Python 2.2 mention from distutils documentation.
Patch by Thomas Kluyver.
Diffstat (limited to 'Python/errors.c')
-rw-r--r-- | Python/errors.c | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/Python/errors.c b/Python/errors.c index a980481110..940aef33a2 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -773,19 +773,11 @@ PyErr_BadInternalCall(void) #define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__) - PyObject * -PyErr_Format(PyObject *exception, const char *format, ...) +PyErr_FormatV(PyObject *exception, const char *format, va_list vargs) { - va_list vargs; PyObject* string; -#ifdef HAVE_STDARG_PROTOTYPES - va_start(vargs, format); -#else - va_start(vargs); -#endif - #ifdef Py_DEBUG /* in debug mode, PyEval_EvalFrameEx() fails with an assertion error if an exception is set when it is called */ @@ -795,11 +787,24 @@ PyErr_Format(PyObject *exception, const char *format, ...) string = PyUnicode_FromFormatV(format, vargs); PyErr_SetObject(exception, string); Py_XDECREF(string); - va_end(vargs); return NULL; } +PyObject * +PyErr_Format(PyObject *exception, const char *format, ...) +{ + va_list vargs; +#ifdef HAVE_STDARG_PROTOTYPES + va_start(vargs, format); +#else + va_start(vargs); +#endif + PyErr_FormatV(exception, format, vargs); + va_end(vargs); + return NULL; +} + PyObject * PyErr_NewException(const char *name, PyObject *base, PyObject *dict) |