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.
win32_code_page_search_function
1 parent a2c6ac0 commit 01b9048Copy full SHA for 01b9048
stdlib/@tests/stubtest_allowlists/win32-py314.txt
@@ -4,7 +4,6 @@
4
5
_winapi.COPY_FILE_DIRECTORY
6
compression.zlib.ZLIBNG_VERSION
7
-encodings.win32_code_page_search_function
8
nt.readinto
9
pathlib.Path.group
10
pathlib.Path.owner
stdlib/encodings/__init__.pyi
@@ -1,9 +1,13 @@
1
+import sys
2
from codecs import CodecInfo
3
class CodecRegistryError(LookupError, SystemError): ...
def normalize_encoding(encoding: str | bytes) -> str: ...
def search_function(encoding: str) -> CodecInfo | None: ...
+if sys.version_info >= (3, 14) and sys.platform == "win32":
+ def win32_code_page_search_function(encoding: str) -> CodecInfo | None: ...
11
+
12
# Needed for submodules
13
def __getattr__(name: str): ... # incomplete module
0 commit comments