diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2019-05-02 03:51:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-02 03:51:56 (GMT) |
commit | cb9fbd35885a8921b9df99e801df4f82e3ba336b (patch) | |
tree | ac897ce5cd21edf057576367de97bd4c6ed0c85d /Programs | |
parent | 11e4a941e9c6225776a986b05230a1963e83f4fb (diff) | |
download | cpython-cb9fbd35885a8921b9df99e801df4f82e3ba336b.zip cpython-cb9fbd35885a8921b9df99e801df4f82e3ba336b.tar.gz cpython-cb9fbd35885a8921b9df99e801df4f82e3ba336b.tar.bz2 |
bpo-36763: Make _PyCoreConfig.check_hash_pycs_mode public (GH-13052)
_PyCoreConfig: Rename _check_hash_pycs_mode field to
check_hash_pycs_mode (make it public) and change its type from "const
char*" to "wchar_t*".
Diffstat (limited to 'Programs')
-rw-r--r-- | Programs/_testembed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Programs/_testembed.c b/Programs/_testembed.c index 3fc8e6d..6e764e3 100644 --- a/Programs/_testembed.c +++ b/Programs/_testembed.c @@ -495,7 +495,7 @@ static int test_init_from_config(void) Py_NoUserSiteDirectory = 0; config.user_site_directory = 0; - config._check_hash_pycs_mode = "always"; + config.check_hash_pycs_mode = L"always"; Py_FrozenFlag = 0; config._frozen = 1; |