diff options
author | Victor Stinner <vstinner@python.org> | 2020-07-07 22:20:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-07 22:20:37 (GMT) |
commit | 8f42748ded5e978fe8a924115179d45a74a6363b (patch) | |
tree | 73ccdf0457e669e8584856dd1cd087fb6b542379 /Include | |
parent | 6ae2780be0667a8dc52c4fb583171ec86067d700 (diff) | |
download | cpython-8f42748ded5e978fe8a924115179d45a74a6363b.zip cpython-8f42748ded5e978fe8a924115179d45a74a6363b.tar.gz cpython-8f42748ded5e978fe8a924115179d45a74a6363b.tar.bz2 |
bpo-29778: test_embed tests the path configuration (GH-21306)
Diffstat (limited to 'Include')
-rw-r--r-- | Include/internal/pycore_pathconfig.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/internal/pycore_pathconfig.h b/Include/internal/pycore_pathconfig.h index 42d61b1..15447f5 100644 --- a/Include/internal/pycore_pathconfig.h +++ b/Include/internal/pycore_pathconfig.h @@ -65,6 +65,7 @@ extern wchar_t* _Py_GetDLLPath(void); extern PyStatus _PyConfig_WritePathConfig(const PyConfig *config); extern void _Py_DumpPathConfig(PyThreadState *tstate); +extern PyObject* _PyPathConfig_AsDict(void); #ifdef __cplusplus } |