diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2021-12-12 08:45:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-12 08:45:20 (GMT) |
commit | 41026c3155012d6ea50e01205c163b6739c675b8 (patch) | |
tree | efcb12a3838254362917553af0b6cfb230e2e7d1 /Parser/pegen.c | |
parent | e6fe10d34096a23be7d26271cf6aba429313b01d (diff) | |
download | cpython-41026c3155012d6ea50e01205c163b6739c675b8.zip cpython-41026c3155012d6ea50e01205c163b6739c675b8.tar.gz cpython-41026c3155012d6ea50e01205c163b6739c675b8.tar.bz2 |
bpo-45855: Replaced deprecated `PyImport_ImportModuleNoBlock` with PyImport_ImportModule (GH-30046)
Diffstat (limited to 'Parser/pegen.c')
-rw-r--r-- | Parser/pegen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/pegen.c b/Parser/pegen.c index 4158a81..870085e 100644 --- a/Parser/pegen.c +++ b/Parser/pegen.c @@ -88,7 +88,7 @@ init_normalization(Parser *p) if (p->normalize) { return 1; } - PyObject *m = PyImport_ImportModuleNoBlock("unicodedata"); + PyObject *m = PyImport_ImportModule("unicodedata"); if (!m) { return 0; |