8000 More pywin32 stub completion by Avasam · Pull Request #9308 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

More pywin32 stub completion #9308

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Dec 5, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix pos-only args
  • Loading branch information
Avasam committed Dec 3, 2022
commit 54b4ba1c73dde9972c2c41e1a73c1e51a9d6dc7c
4 changes: 2 additions & 2 deletions stubs/pywin32/_win32typing.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ class PyACL:
def AddAccessAllowedObjectAce(
self, AceRevision, AceFlags, AccessMask, ObjectTypeGuid: PyIID, InheritedObjectTypeGuid: PyIID, sid: PySID
) -> None: ...
def AddAccessDeniedAce(self, revision, access, sid: PySID, access1, sid1) -> None: ...
def AddAccessDeniedAceEx(self, __revision: int, __aceflags: int, __access: int, _sid: PySID) -> None: ...
def AddAccessDeniedAce(self, __revision: int, __access: int, __sid: PySID, __access1: int, __sid1: PySID) -> None: ...
def AddAccessDeniedAceEx(self, __revision: int, __aceflags: int, __access: int, __sid: PySID) -> None: ...
def AddMandatoryAce(self, AceRevision, AceFlags, MandatoryPolicy, LabelSid: PySID) -> None: ...
def AddAuditAccessAce(self, dwAceRevision, dwAccessMask, sid: PySID, bAuditSuccess, bAuditFailure) -> None: ...
def AddAuditAccessAceEx(self, dwAceRevision, AceFlags, dwAccessMask, sid: PySID, bAuditSuccess, bAuditFailure) -> None: ...
Expand Down
2 changes: 1 addition & 1 deletion stubs/pywin32/win32/win32security.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def LogonUser(
def LogonUserEx(
Username: str, Domain: str, Password: str, LogonType, LogonProvider
) -> tuple[int, _win32typing.PySID, Incomplete, Incomplete]: ...
def LookupAccountName(_systemName: str | None, __accountName: str) -> tuple[_win32typing.PySID, str, int]: ...
def LookupAccountName(__systemName: str | None, __accountName: str) -> tuple[_win32typing.PySID, str, int]: ...
def LookupAccountSid(__systemName: str, __sid: _win32typing.PySID) -> tuple[str, str, Incomplete]: ...
def GetBinarySid(__SID: str) -> _win32typing.PySID: ...
def SetSecurityInfo(
Expand Down
2 changes: 1 addition & 1 deletion stubs/pywin32/win32/win32ts.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def WTSEnumerateServers(DomainName: str | None = ..., Version: int = ..., Reserv
def WTSEnumerateSessions(__Server: int, __Version: int = ..., __Reserved=...) -> tuple[dict[str, str | int], ...]: ...
def WTSLogoffSession(__Server: int, __SessionId: int, __Wait: bool) -> None: ...
def WTSDisconnectSession(__Server: int, __SessionId: int, __Wait: bool) -> None: ...
def WTSQuerySessionInformation(_Server: int, _SessionId: int, _WTSInfoClass: int) -> str: ...
def WTSQuerySessionInformation(__Server: int, __SessionId: int, __WTSInfoClass: int) -> str: ...
def WTSEnumerateProcesses(Server: int, Version: int = ..., Reserved: int = ...) -> tuple[str, ...]: ...
def WTSQueryUserToken(SessionId) -> int: ...
def WTSShutdownSystem(Server: int, ShutdownFlag) -> None: ...
Expand Down
0