diff options
| author | Victor Stinner <vstinner@redhat.com> | 2019-09-30 22:46:42 (GMT) |
|---|---|---|
| committer | Nick Coghlan <ncoghlan@gmail.com> | 2019-09-30 22:46:42 (GMT) |
| commit | bdace21b769998396d0ccc8da99a8ca9b507bfdf (patch) | |
| tree | de149589d8dd498ddf3574e9d9551951d3f7e79b /Python/pathconfig.c | |
| parent | 92ca515ee1efbdc51678e12d105ad642c9b9cc13 (diff) | |
| download | cpython-bdace21b769998396d0ccc8da99a8ca9b507bfdf.zip cpython-bdace21b769998396d0ccc8da99a8ca9b507bfdf.tar.gz cpython-bdace21b769998396d0ccc8da99a8ca9b507bfdf.tar.bz2 | |
bpo-38304: Remove PyConfig.struct_size (GH-16500)
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.
Diffstat (limited to 'Python/pathconfig.c')
| -rw-r--r-- | Python/pathconfig.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/pathconfig.c b/Python/pathconfig.c index 41ef7d2..ff4bbf2 100644 --- a/Python/pathconfig.c +++ b/Python/pathconfig.c @@ -434,7 +434,6 @@ pathconfig_global_read(_PyPathConfig *pathconfig) { PyStatus status; PyConfig config; - config.struct_size = sizeof(PyConfig); status = _PyConfig_InitCompatConfig(&config); if (_PyStatus_EXCEPTION(status)) { |
