diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-10-01 10:56:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-01 10:56:37 +0200 |
commit | 3c30a76f3d3c0dcc1fb4de097fa4a3a4c92c0b0b (patch) | |
tree | bb73b56814d30967e67cc61eb8b66cab83477c3a /Python/frozenmain.c | |
parent | 94e165096fd65e8237e60de570fb609604ab94c9 (diff) | |
download | cpython-git-3c30a76f3d3c0dcc1fb4de097fa4a3a4c92c0b0b.tar.gz |
bpo-38304: Remove PyConfig.struct_size (GH-16500) (GH-16508)
For now, we'll rely on the fact that the config structures aren't covered by the stable ABI.
We may revisit this in the future if we further explore the idea of offering a stable embedding API.
(cherry picked from commit bdace21b769998396d0ccc8da99a8ca9b507bfdf)
Diffstat (limited to 'Python/frozenmain.c')
-rw-r--r-- | Python/frozenmain.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/frozenmain.c b/Python/frozenmain.c index 76309e9e5d..c56938ab48 100644 --- a/Python/frozenmain.c +++ b/Python/frozenmain.c @@ -40,7 +40,6 @@ Py_FrozenMain(int argc, char **argv) } PyConfig config; - config.struct_size = sizeof(PyConfig); status = PyConfig_InitPythonConfig(&config); if (PyStatus_Exception(status)) { PyConfig_Clear(&config); |