1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
# mode: error
import cython
try:
from typing import Optional, ClassVar
except ImportError:
pass
# not OK
def optional_cython_types(Optional[cython.int] i, Optional[cython.double] d, Optional[cython.float] f,
Optional[cython.complex] c, Optional[cython.long] l, Optional[cython.longlong] ll):
pass
MyStruct = cython.struct(a=cython.int, b=cython.double)
def optional_cstruct(Optional[MyStruct] x):
pass
def optional_pytypes(Optional[int] i, Optional[float] f, Optional[complex] c, Optional[long] l):
pass
cdef ClassVar[list] x
# OK
def optional_memoryview(double[:] d, Optional[double[:]] o):
pass
cdef class Cls(object):
cdef ClassVar[list] x
_ERRORS = """
13:42: typing.Optional[...] cannot be applied to type int
13:66: typing.Optional[...] cannot be applied to type double
13:93: typing.Optional[...] cannot be applied to type float
14:42: typing.Optional[...] cannot be applied to type double complex
14:70: typing.Optional[...] cannot be applied to type long
14:95: typing.Optional[...] cannot be applied to type long long
24:30: typing.Optional[...] cannot be applied to type int
24:47: typing.Optional[...] cannot be applied to type float
24:87: typing.Optional[...] cannot be applied to type long
20:30: typing.Optional[...] cannot be applied to type MyStruct
28:20: Modifier 'typing.ClassVar' is not allowed here.
"""
|