]> granicus.if.org Git - python/commitdiff
Renamed a local label that was accidentally grandly renamed to
authorGuido van Rossum <guido@python.org>
Tue, 5 Aug 1997 02:18:01 +0000 (02:18 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 5 Aug 1997 02:18:01 +0000 (02:18 +0000)
'Py_Cleanup' back to 'cleanup'.

Python/ceval.c

index bb0fb65c794a9180d08dc52673cf2b968611a78b..07c3ab67df939e57eb89f71b83513a3b6a151fca 100644 (file)
@@ -2139,10 +2139,10 @@ call_trace(p_trace, p_newtrace, f, msg, arg)
        
        args = PyTuple_New(3);
        if (args == NULL)
-               goto Py_Cleanup;
+               goto cleanup;
        what = PyString_FromString(msg);
        if (what == NULL)
-               goto Py_Cleanup;
+               goto cleanup;
        Py_INCREF(f);
        PyTuple_SET_ITEM(args, 0, (PyObject *)f);
        PyTuple_SET_ITEM(args, 1, what);
@@ -2155,7 +2155,7 @@ call_trace(p_trace, p_newtrace, f, msg, arg)
        res = PyEval_CallObject(*p_trace, args); /* May clear *p_trace! */
        PyFrame_LocalsToFast(f, 1);
        tstate->tracing--;
Py_Cleanup:
cleanup:
        Py_XDECREF(args);
        if (res == NULL) {
                /* The trace proc raised an exception */