Commit aaade0fc authored by Stefan Behnel's avatar Stefan Behnel

Merge branch '0.29.x'

parents 8073ed27 7d1dc885
...@@ -30,7 +30,7 @@ def anno_gen(x: 'int') -> 'float': ...@@ -30,7 +30,7 @@ def anno_gen(x: 'int') -> 'float':
>>> next(gen) >>> next(gen)
2.0 2.0
>>> ret, arg = sorted(anno_gen.__annotations__.items()) >>> ret, arg = sorted(anno_gen.__annotations__.items())
>>> print(ret[0]); print(str(ret[1]).strip("'")) # strip makes it pass with/without PEP563 >>> print(ret[0]); print(str(ret[1]).strip("'")) # strip makes it pass with/without PEP563
return return
float float
>>> print(arg[0]); print(str(arg[1]).strip("'")) >>> print(arg[0]); print(str(arg[1]).strip("'"))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment