[nt] Add readinto (#14516)

This commit is contained in:
Semyon Moroz
2025-08-04 10:43:55 +00:00
committed by GitHub
parent 2888ec7011
commit 731090c062
2 changed files with 3 additions and 1 deletions
@@ -4,7 +4,6 @@
_winapi.COPY_FILE_DIRECTORY
compression.zlib.ZLIBNG_VERSION
nt.readinto
pathlib.Path.group
pathlib.Path.owner
zlib.ZLIBNG_VERSION
+3
View File
@@ -110,4 +110,7 @@ if sys.platform == "win32":
if sys.version_info >= (3, 13):
from os import fchmod as fchmod, lchmod as lchmod
if sys.version_info >= (3, 14):
from os import readinto as readinto
environ: dict[str, str]