Skip to content

Commit 122e42e

Browse files
committed
fix missing lazy-related symbols
1 parent f96c909 commit 122e42e

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

Python/bytecodes.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@
1111
#include "pycore_audit.h" // _PySys_Audit()
1212
#include "pycore_backoff.h"
1313
#include "pycore_cell.h" // PyCell_GetRef()
14+
#include "pycore_ceval.h" // _PyEval_LazyImportName(), _PyEval_LazyImportFrom()
1415
#include "pycore_code.h"
1516
#include "pycore_emscripten_signal.h" // _Py_CHECK_EMSCRIPTEN_SIGNALS
1617
#include "pycore_function.h"
18+
#include "pycore_import.h" // _PyImport_LoadLazyImportTstate()
1719
#include "pycore_instruments.h"
1820
#include "pycore_interpolation.h" // _PyInterpolation_Build()
1921
#include "pycore_intrinsics.h"

Tools/jit/template.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include "pycore_frame.h"
1313
#include "pycore_function.h"
1414
#include "pycore_genobject.h"
15+
#include "pycore_import.h"
1516
#include "pycore_interpframe.h"
1617
#include "pycore_interpolation.h"
1718
#include "pycore_intrinsics.h"

0 commit comments

Comments
 (0)