Skip to content
Snippets Groups Projects
Commit ab32fd84 authored by Matt Harbison's avatar Matt Harbison
Browse files

typing: disable a few incorrect warnings in pywatchman

The module-attr warnings are for things that only exist on Windows, and the
wrong-keyword-args warning is due to a special case for a specific constructor.
Both of these are properly conditionalized.
parent 40d3ee57
2 merge requests!485branching: merge default into stable,!379Add pytype coverage to the extensions
......@@ -986,5 +986,7 @@
# if invoked via an application with graphical user interface,
# this call will cause a brief command window pop-up.
# Using the flag STARTF_USESHOWWINDOW to avoid this behavior.
# pytype: disable=module-attr
startupinfo = subprocess.STARTUPINFO()
startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
......@@ -989,5 +991,7 @@
startupinfo = subprocess.STARTUPINFO()
startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
# pytype: enable=module-attr
args["startupinfo"] = startupinfo
p = subprocess.Popen(cmd, **args)
......@@ -1024,4 +1028,6 @@
if self.transport == CLIProcessTransport:
kwargs["binpath"] = self.binpath
# Only CLIProcessTransport has the binpath kwarg
# pytype: disable=wrong-keyword-args
self.tport = self.transport(self.sockpath, self.timeout, **kwargs)
......@@ -1027,4 +1033,6 @@
self.tport = self.transport(self.sockpath, self.timeout, **kwargs)
# pytype: enable=wrong-keyword-args
self.sendConn = self.sendCodec(self.tport)
self.recvConn = self.recvCodec(self.tport)
self.pid = os.getpid()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment