aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/PySide2/support
diff options
context:
space:
mode:
authorChristian Tismer <tismer@stackless.com>2020-04-16 17:23:55 +0200
committerChristian Tismer <tismer@stackless.com>2020-04-17 07:35:44 +0000
commitb0bfeaf894344e31b5175dbbd3ce371fae5dee5b (patch)
treea40744e2e5cabf5c86415c4a9e91baef01f9e86e /sources/pyside2/PySide2/support
parent8df43d8c9d704a3abcc58b8ba84fc6fbfee2c433 (diff)
Support type checking with the mypy module
According to PEP 561, there needs to exist a py.typed file. Also, the import of typing must be visible statically for mypy without importing PySide2. Testing.. run mypy pyside_1100.py and you will get the correct output without "any". Change-Id: I1d08447161630a8c7a64eda32ff8a431e994c6a7 Fixes: PYSIDE-1100 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'sources/pyside2/PySide2/support')
-rw-r--r--sources/pyside2/PySide2/support/generate_pyi.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/sources/pyside2/PySide2/support/generate_pyi.py b/sources/pyside2/PySide2/support/generate_pyi.py
index e60645701..f173ec2fc 100644
--- a/sources/pyside2/PySide2/support/generate_pyi.py
+++ b/sources/pyside2/PySide2/support/generate_pyi.py
@@ -138,6 +138,10 @@ class Formatter(Writer):
self.print("# Module", mod_name)
self.print("import PySide2")
from PySide2.support.signature import typing
+ self.print("try:")
+ self.print(" import typing")
+ self.print("except ImportError:")
+ self.print(" from PySide2.support.signature import typing")
self.print("from PySide2.support.signature import typing")
self.print("from PySide2.support.signature.mapping import (")
self.print(" Virtual, Missing, Invalid, Default, Instance)")