431431Py_SetRecursionLimit (int new_limit )
432432{
433433 recursion_limit = new_limit ;
434- _Py_CheckRecursionLimit = recursion_limit ;
434+ _Py_CheckRecursionLimit = recursion_limit ;
435435}
436436
437437/* the macro Py_EnterRecursiveCall() only calls _Py_CheckRecursiveCall()
@@ -469,7 +469,7 @@ _Py_CheckRecursiveCall(char *where)
469469 where );
470470 return -1 ;
471471 }
472- _Py_CheckRecursionLimit = recursion_limit ;
472+ _Py_CheckRecursionLimit = recursion_limit ;
473473 return 0 ;
474474}
475475
@@ -805,11 +805,11 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
805805 Py_MakePendingCalls() above. */
806806
807807 if (-- _Py_Ticker < 0 ) {
808- if (* next_instr == SETUP_FINALLY ) {
809- /* Make the last opcode before
810- a try: finally: block uninterruptable. */
811- goto fast_next_opcode ;
812- }
808+ if (* next_instr == SETUP_FINALLY ) {
809+ /* Make the last opcode before
810+ a try: finally: block uninterruptable. */
811+ goto fast_next_opcode ;
812+ }
813813 _Py_Ticker = _Py_CheckInterval ;
814814 tstate -> tick_counter ++ ;
815815#ifdef WITH_TSC
@@ -2500,7 +2500,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
25002500 }
25012501
25022502 /* pop frame */
2503- exit_eval_frame :
2503+ exit_eval_frame :
25042504 Py_LeaveRecursiveCall ();
25052505 tstate -> frame = f -> f_back ;
25062506
@@ -2761,9 +2761,9 @@ PyEval_EvalCodeEx(PyCodeObject *co, PyObject *globals, PyObject *locals,
27612761 return PyGen_New (f );
27622762 }
27632763
2764- retval = PyEval_EvalFrameEx (f ,0 );
2764+ retval = PyEval_EvalFrameEx (f ,0 );
27652765
2766- fail : /* Jump here from prelude on failure */
2766+ fail : /* Jump here from prelude on failure */
27672767
27682768 /* decref'ing the frame can cause __del__ methods to get invoked,
27692769 which can call back into Python. While we're done with the
@@ -2772,7 +2772,7 @@ PyEval_EvalCodeEx(PyCodeObject *co, PyObject *globals, PyObject *locals,
27722772 */
27732773 assert (tstate != NULL );
27742774 ++ tstate -> recursion_depth ;
2775- Py_DECREF (f );
2775+ Py_DECREF (f );
27762776 -- tstate -> recursion_depth ;
27772777 return retval ;
27782778}
@@ -3186,18 +3186,18 @@ maybe_call_line_trace(Py_tracefunc func, PyObject *obj,
31863186 represents a jump backwards, call the trace function.
31873187 */
31883188 if ((frame -> f_lasti < * instr_lb || frame -> f_lasti >= * instr_ub )) {
3189- int line ;
3190- PyAddrPair bounds ;
3189+ int line ;
3190+ PyAddrPair bounds ;
31913191
3192- line = PyCode_CheckLineNumber (frame -> f_code , frame -> f_lasti ,
3193- & bounds );
3194- if (line >= 0 ) {
3192+ line = PyCode_CheckLineNumber (frame -> f_code , frame -> f_lasti ,
3193+ & bounds );
3194+ if (line >= 0 ) {
31953195 frame -> f_lineno = line ;
31963196 result = call_trace (func , obj , frame ,
31973197 PyTrace_LINE , Py_None );
3198- }
3199- * instr_lb = bounds .ap_lower ;
3200- * instr_ub = bounds .ap_upper ;
3198+ }
3199+ * instr_lb = bounds .ap_lower ;
3200+ * instr_ub = bounds .ap_upper ;
32013201 }
32023202 else if (frame -> f_lasti <= * instr_prev ) {
32033203 result = call_trace (func , obj , frame , PyTrace_LINE , Py_None );
@@ -3583,9 +3583,9 @@ update_keyword_args(PyObject *orig_kwdict, int nk, PyObject ***pp_stack,
35833583 PyObject * value = EXT_POP (* pp_stack );
35843584 PyObject * key = EXT_POP (* pp_stack );
35853585 if (PyDict_GetItem (kwdict , key ) != NULL ) {
3586- PyErr_Format (PyExc_TypeError ,
3587- "%.200s%s got multiple values "
3588- "for keyword argument '%.200s'" ,
3586+ PyErr_Format (PyExc_TypeError ,
3587+ "%.200s%s got multiple values "
3588+ "for keyword argument '%.200s'" ,
35893589 PyEval_GetFuncName (func ),
35903590 PyEval_GetFuncDesc (func ),
35913591 PyUnicode_AsString (key ));
@@ -3763,7 +3763,7 @@ ext_do_call(PyObject *func, PyObject ***pp_stack, int flags, int na, int nk)
37633763 PCALL (PCALL_OTHER );
37643764#endif
37653765 result = PyObject_Call (func , callargs , kwdict );
3766- ext_call_fail :
3766+ ext_call_fail :
37673767 Py_XDECREF (callargs );
37683768 Py_XDECREF (kwdict );
37693769 Py_XDECREF (stararg );
0 commit comments