summaryrefslogtreecommitdiffstats
path: root/Parser/pegen.c
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2021-12-12 08:45:20 (GMT)
committerGitHub <noreply@github.com>2021-12-12 08:45:20 (GMT)
commit41026c3155012d6ea50e01205c163b6739c675b8 (patch)
treeefcb12a3838254362917553af0b6cfb230e2e7d1 /Parser/pegen.c
parente6fe10d34096a23be7d26271cf6aba429313b01d (diff)
downloadcpython-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.c2
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;