Skip to content

Commit 731090c

Browse files
authored
[nt] Add readinto (#14516)
1 parent 2888ec7 commit 731090c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

stdlib/@tests/stubtest_allowlists/win32-py314.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
_winapi.COPY_FILE_DIRECTORY
66
compression.zlib.ZLIBNG_VERSION
7-
nt.readinto
87
pathlib.Path.group
98
pathlib.Path.owner
109
zlib.ZLIBNG_VERSION

stdlib/nt.pyi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,4 +110,7 @@ if sys.platform == "win32":
110110
if sys.version_info >= (3, 13):
111111
from os import fchmod as fchmod, lchmod as lchmod
112112

113+
if sys.version_info >= (3, 14):
114+
from os import readinto as readinto
115+
113116
environ: dict[str, str]

0 commit comments

Comments
 (0)