Commit 801a5dc9 authored by Stefan Behnel's avatar Stefan Behnel

Disable a type annotations test that now fails in Py3.7.

parent 23bc7257
......@@ -83,12 +83,12 @@ class BasicStarshipExt(object):
T = TypeVar('T')
class Box(Generic[T]):
def __init__(self, content):
self.content: T = content
box = Box(content=5)
# FIXME: this fails in Py3.7 now
#class Box(Generic[T]):
# def __init__(self, content):
# self.content: T = content
#
#box = Box(content=5)
class Cls(object):
......
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