mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 22:14:27 +08:00
Typing after all cannot be used in Python 2.6, therefore remove it again and disable the tests for 2.6 that need it.
This commit is contained in:
@@ -47,6 +47,10 @@ b
|
|||||||
class Employee:
|
class Employee:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
# The typing library is not installable for Python 2.6, therefore ignore the
|
||||||
|
# following tests.
|
||||||
|
# python > 2.6
|
||||||
|
|
||||||
from typing import List
|
from typing import List
|
||||||
x = [] # type: List[Employee]
|
x = [] # type: List[Employee]
|
||||||
#? Employee()
|
#? Employee()
|
||||||
|
|||||||
Reference in New Issue
Block a user