Skip to content

Commit 0801f17

Browse files
committed
More minor fixes after merge with main
1 parent e6d01ef commit 0801f17

File tree

5 files changed

+12
-21
lines changed

5 files changed

+12
-21
lines changed

Objects/clinic/interpolationobject.c.h

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python/bytecodes.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232
#include "pycore_stackref.h"
3333
#include "pycore_tuple.h" // _PyTuple_ITEMS()
3434
#include "pycore_typeobject.h" // _PySuper_Lookup()
35+
#include "pycore_interpolation.h"
36+
#include "pycore_template.h"
3537

3638
#include "pycore_dict.h"
3739
#include "dictobject.h"
@@ -1891,7 +1893,7 @@ dummy_func(
18911893

18921894
inst(BUILD_TEMPLATE_LIST, (list -- template)) {
18931895
PyObject *template_o = _PyTemplate_FromListStackRef(list);
1894-
DECREF_INPUTS();
1896+
INPUTS_DEAD();
18951897
ERROR_IF(template_o == NULL, error);
18961898
template = PyStackRef_FromPyObjectSteal(template_o);
18971899
}

Python/executor_cases.c.h

Lines changed: 3 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python/generated_cases.c.h

Lines changed: 2 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python/stdlib_module_names.h

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)