summaryrefslogtreecommitdiff
path: root/tests/errors/e_typing_optional.py
blob: 6facfeea48d24b5b8c17d9ac84cd60e61563807d (plain)
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
# mode: error

import cython

try:
    from typing import Optional
except ImportError:
    pass


# not OK

def optional_cython_types(i: Optional[cython.int], d: Optional[cython.double], f: Optional[cython.float],
                          c: Optional[cython.complex], l: Optional[cython.long], ll: Optional[cython.longlong]):
    pass


MyStruct = cython.struct(a=cython.int, b=cython.double)

def optional_cstruct(x: Optional[MyStruct]):
    pass


# OK

def optional_pytypes(i: Optional[int], f: Optional[float], c: Optional[complex], l: Optional[long]):
    pass


def optional_memoryview(d: double[:], o: Optional[double[:]]):
    pass


_ERRORS = """
13:44: typing.Optional[...] cannot be applied to non-Python type int
13:69: typing.Optional[...] cannot be applied to non-Python type double
13:97: typing.Optional[...] cannot be applied to non-Python type float
14:44: typing.Optional[...] cannot be applied to non-Python type double complex
14:73: typing.Optional[...] cannot be applied to non-Python type long
14:100: typing.Optional[...] cannot be applied to non-Python type long long

20:33: typing.Optional[...] cannot be applied to non-Python type MyStruct
"""