1
0
forked from VimPlug/jedi

Remove a lot of test references to Python 2/3.5

This commit is contained in:
Dave Halter
2020-07-02 00:17:21 +02:00
parent 0e5869b52f
commit 50b85153ce
32 changed files with 24 additions and 87 deletions

View File

@@ -1,7 +1,5 @@
"""
Test the typing library, with docstrings. This is needed since annotations
are not supported in python 2.7 else then annotating by comment (and this is
still TODO at 2016-01-23)
Test the typing library, with docstrings and annotations
"""
import typing
class B:
@@ -295,8 +293,6 @@ y = type(PlainInt)
#? type.mro
y.mro
# python > 2.7
class TestDefaultDict(typing.DefaultDict[str, int]):
def setdud(self):
pass
@@ -323,7 +319,6 @@ for key in x.keys():
for value in x.values():
#? int()
value
# python > 2.7
"""