-
Type: Improvement
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: 1.0.0
-
Fix Version/s: 2.0.0
-
Component/s: None
-
Story Points:5
It will ease the Python 3 support to annotate arguments.
We will use the Python 2 annotation (ie using comments):
def foo(a, b=None): # type: (int, Optional[int]) -> int if b is not None: return a * b return a
- is required by
-
NXPY-9 Python 3 support
- Resolved