mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
bpo-45855: Replaced deprecated PyImport_ImportModuleNoBlock with PyImport_ImportModule (GH-30046)
This commit is contained in:
parent
e6fe10d340
commit
41026c3155
12 changed files with 17 additions and 16 deletions
|
|
@ -461,7 +461,7 @@ fp_setreadl(struct tok_state *tok, const char* enc)
|
|||
return 0;
|
||||
}
|
||||
|
||||
io = PyImport_ImportModuleNoBlock("io");
|
||||
io = PyImport_ImportModule("io");
|
||||
if (io == NULL)
|
||||
return 0;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue