1
0
forked from VimPlug/jedi

Fix tests in Python 2

This commit is contained in:
Dave Halter
2020-05-16 17:47:33 +02:00
parent cd3d40a3b8
commit d16355fcf2
2 changed files with 3 additions and 1 deletions

View File

@@ -169,6 +169,8 @@ from datetime import datetime, timedelta
# magic methods
# -----------------
# python >= 3.5
class C:
def __sub__(self, other) -> int: ...
def __radd__(self, other) -> float: ...