We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
COPY_FILE_DIRECTORY
1 parent 731090c commit e16c23dCopy full SHA for e16c23d
stdlib/@tests/stubtest_allowlists/win32-py314.txt
@@ -2,7 +2,6 @@
2
# TODO: New errors in Python 3.14 that need to be fixed or moved below
3
# ====================================================================
4
5
-_winapi.COPY_FILE_DIRECTORY
6
compression.zlib.ZLIBNG_VERSION
7
pathlib.Path.group
8
pathlib.Path.owner
stdlib/_winapi.pyi
@@ -172,6 +172,9 @@ if sys.platform == "win32":
172
ERROR_ACCESS_DENIED: Final = 5
173
ERROR_PRIVILEGE_NOT_HELD: Final = 1314
174
175
+ if sys.version_info >= (3, 14):
176
+ COPY_FILE_DIRECTORY: Final = 0x00000080
177
+
178
def CloseHandle(handle: int, /) -> None: ...
179
@overload
180
def ConnectNamedPipe(handle: int, overlapped: Literal[True]) -> Overlapped: ...
0 commit comments