Add missing winapi constants for 3.13 (#12657)

This commit is contained in:
Max Muoto
2024-09-14 04:39:22 -05:00
committed by GitHub
parent 9e787769c6
commit eaeb56ffcf
3 changed files with 19 additions and 15 deletions

View File

@@ -2582,6 +2582,11 @@ else:
def list2cmdline(seq: Iterable[StrOrBytesPath]) -> str: ... # undocumented
if sys.platform == "win32":
if sys.version_info >= (3, 13):
from _winapi import STARTF_FORCEOFFFEEDBACK, STARTF_FORCEONFEEDBACK
__all__ += ["STARTF_FORCEOFFFEEDBACK", "STARTF_FORCEONFEEDBACK"]
class STARTUPINFO:
def __init__(
self,