Skip to content

Commit c7074f2

Browse files
Expose symbols for the frozen arrays.
1 parent 61faf8c commit c7074f2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Include/internal/pycore_import.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ struct _module_alias {
1515
const char *orig; /* ASCII encoded string */
1616
};
1717

18-
extern const struct _frozen *_PyImport_FrozenBootstrap;
19-
extern const struct _frozen *_PyImport_FrozenStdlib;
20-
extern const struct _frozen *_PyImport_FrozenTest;
18+
PyAPI_DATA(const struct _frozen *) _PyImport_FrozenBootstrap;
19+
PyAPI_DATA(const struct _frozen *) _PyImport_FrozenStdlib;
20+
PyAPI_DATA(const struct _frozen *) _PyImport_FrozenTest;
2121
extern const struct _module_alias * _PyImport_FrozenAliases;
2222

2323
#ifdef __cplusplus

0 commit comments

Comments
 (0)