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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
|
# mode: run
# tag: pep484, warnings
cimport cython
from cython cimport typeof
from cpython.ref cimport PyObject
try:
from typing import Optional
except ImportError:
pass
def old_dict_syntax(a: list, b: "int" = 2, c: {'ctype': 'long int'} = 3, d: {'type': 'long int'} = 4) -> list:
"""
>>> old_dict_syntax([1])
('list object', 'Python object', 'long', 'long')
[1, 2, 3, 4]
>>> old_dict_syntax([1], 3)
('list object', 'Python object', 'long', 'long')
[1, 3, 3, 4]
>>> old_dict_syntax(123)
Traceback (most recent call last):
TypeError: Argument 'a' has incorrect type (expected list, got int)
>>> old_dict_syntax(None)
Traceback (most recent call last):
TypeError: Argument 'a' has incorrect type (expected list, got NoneType)
"""
print(typeof(a), typeof(b), typeof(c), typeof(d))
a.append(b)
a.append(c)
a.append(d)
return a
def pytypes_def(a: list, b: int = 2, c: long = 3, d: float = 4.0, n: list = None, o: Optional[tuple] = ()) -> list:
"""
>>> pytypes_def([1])
('list object', 'Python object', 'Python object', 'double', 'list object', 'tuple object')
[1, 2, 3, 4.0, None, ()]
>>> pytypes_def([1], 3)
('list object', 'Python object', 'Python object', 'double', 'list object', 'tuple object')
[1, 3, 3, 4.0, None, ()]
>>> pytypes_def([1], 3, 2, 1, [], None)
('list object', 'Python object', 'Python object', 'double', 'list object', 'tuple object')
[1, 3, 2, 1.0, [], None]
>>> pytypes_def(123)
Traceback (most recent call last):
TypeError: Argument 'a' has incorrect type (expected list, got int)
>>> pytypes_def(None)
Traceback (most recent call last):
TypeError: Argument 'a' has incorrect type (expected list, got NoneType)
"""
print(typeof(a), typeof(b), typeof(c), typeof(d), typeof(n), typeof(o))
a.append(b)
a.append(c)
a.append(d)
a.append(n)
a.append(o)
return a
cpdef pytypes_cpdef(a: list, b: int = 2, c: long = 3, d: float = 4.0, n: list = None, o: Optional[tuple] = ()):
"""
>>> pytypes_cpdef([1])
('list object', 'Python object', 'Python object', 'double', 'list object', 'tuple object')
[1, 2, 3, 4.0, None, ()]
>>> pytypes_cpdef([1], 3)
('list object', 'Python object', 'Python object', 'double', 'list object', 'tuple object')
[1, 3, 3, 4.0, None, ()]
>>> pytypes_cpdef([1], 3, 2, 1, [], None)
('list object', 'Python object', 'Python object', 'double', 'list object', 'tuple object')
[1, 3, 2, 1.0, [], None]
>>> pytypes_cpdef(123)
Traceback (most recent call last):
TypeError: Argument 'a' has incorrect type (expected list, got int)
>>> pytypes_cpdef(None)
Traceback (most recent call last):
TypeError: Argument 'a' has incorrect type (expected list, got NoneType)
"""
print(typeof(a), typeof(b), typeof(c), typeof(d), typeof(n), typeof(o))
a.append(b)
a.append(c)
a.append(d)
a.append(n)
a.append(o)
return a
cdef c_pytypes_cdef(a: list, b: int = 2, c: long = 3, d: float = 4.0, n: list = None):
print(typeof(a), typeof(b), typeof(c), typeof(d), typeof(n))
a.append(b)
a.append(c)
a.append(d)
a.append(n)
return a
def pytypes_cdef(a, b=2, c=3, d=4):
"""
>>> pytypes_cdef([1])
('list object', 'Python object', 'Python object', 'double', 'list object')
[1, 2, 3, 4.0, None]
>>> pytypes_cdef([1], 3)
('list object', 'Python object', 'Python object', 'double', 'list object')
[1, 3, 3, 4.0, None]
>>> pytypes_cdef(123) # doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: ...
"""
return c_pytypes_cdef(a, b, c, d)
def pyint(a: int):
"""
>>> large_int = eval('0x'+'F'*64) # definitely bigger than C int64
>>> pyint(large_int) == large_int
True
"""
return a
def ctypes_def(a: list, b: cython.int = 2, c: cython.long = 3, d: cython.float = 4) -> list:
"""
>>> ctypes_def([1])
('list object', 'int', 'long', 'float')
[1, 2, 3, 4.0]
>>> ctypes_def([1], 3)
('list object', 'int', 'long', 'float')
[1, 3, 3, 4.0]
>>> ctypes_def(123)
Traceback (most recent call last):
TypeError: Argument 'a' has incorrect type (expected list, got int)
"""
print(typeof(a), typeof(b), typeof(c), typeof(d))
a.append(b)
a.append(c)
a.append(d)
return a
def return_tuple_for_carray() -> tuple:
"""
>>> return_tuple_for_carray()
(1, 2, 3)
"""
cdef int[3] x
x = [1, 2, 3]
return x
def invalid_ctuple_syntax(a: (cython.int, cython.int), b: (int, int)):
"""
>>> invalid_ctuple_syntax([1, 2], [3, 4])
[1, 2, 3, 4]
"""
result: (cython.int, cython.int, cython.int, cython.int) = a + b
return result
MyStruct = cython.struct(x=cython.int, y=cython.int, data=cython.double)
@cython.ccall
def struct_io(s : MyStruct) -> MyStruct:
"""
>>> d = struct_io(dict(x=1, y=2, data=3))
>>> sorted(d.items())
[('data', 3.0), ('x', 2), ('y', 1)]
>>> d = struct_io(None)
Traceback (most recent call last):
TypeError: Expected a mapping, got NoneType
"""
t = s
t.x, t.y = s.y, s.x
return t
@cython.test_fail_if_path_exists(
"//CoerceFromPyTypeNode",
"//SimpleCallNode//CoerceToPyTypeNode",
)
@cython.test_assert_path_exists(
"//CoerceToPyTypeNode",
"//CoerceToPyTypeNode//SimpleCallNode",
)
def call_struct_io(s : MyStruct) -> MyStruct:
"""
>>> d = call_struct_io(dict(x=1, y=2, data=3))
>>> sorted(d.items())
[('data', 3.0), ('x', 2), ('y', 1)]
>>> d = call_struct_io(None)
Traceback (most recent call last):
TypeError: Expected a mapping, got NoneType
"""
return struct_io(s)
@cython.test_assert_path_exists(
"//CFuncDefNode",
"//CFuncDefNode//DefNode",
"//CFuncDefNode[@return_type]",
"//CFuncDefNode[@return_type.is_struct_or_union = True]",
)
@cython.ccall
def struct_convert(d) -> MyStruct:
"""
>>> d = struct_convert(dict(x=1, y=2, data=3))
>>> sorted(d.items())
[('data', 3.0), ('x', 1), ('y', 2)]
>>> struct_convert({}) # make sure we can raise exceptions through struct return values
Traceback (most recent call last):
ValueError: No value specified for struct attribute 'x'
"""
return d
@cython.test_assert_path_exists(
"//CFuncDefNode",
"//CFuncDefNode//DefNode",
"//CFuncDefNode[@return_type]",
"//CFuncDefNode[@return_type.is_int = True]",
)
@cython.ccall
def exception_default(raise_exc : cython.bint = False) -> cython.int:
"""
>>> exception_default(raise_exc=False)
10
>>> exception_default(raise_exc=True)
Traceback (most recent call last):
ValueError: huhu!
"""
if raise_exc:
raise ValueError("huhu!")
return 10
def call_exception_default(raise_exc=False):
"""
>>> call_exception_default(raise_exc=False)
10
>>> call_exception_default(raise_exc=True)
Traceback (most recent call last):
ValueError: huhu!
"""
return exception_default(raise_exc)
@cython.test_assert_path_exists(
"//CFuncDefNode",
"//CFuncDefNode//DefNode",
"//CFuncDefNode[@return_type]",
"//CFuncDefNode[@return_type.is_int = True]",
)
@cython.ccall
def exception_default_uint(raise_exc : cython.bint = False) -> cython.uint:
"""
>>> print(exception_default_uint(raise_exc=False))
10
>>> exception_default_uint(raise_exc=True)
Traceback (most recent call last):
ValueError: huhu!
"""
if raise_exc:
raise ValueError("huhu!")
return 10
def call_exception_default_uint(raise_exc=False):
"""
>>> print(call_exception_default_uint(raise_exc=False))
10
>>> call_exception_default_uint(raise_exc=True)
Traceback (most recent call last):
ValueError: huhu!
"""
return exception_default_uint(raise_exc)
class EarlyClass(object):
"""
>>> a = EarlyClass(1)
>>> a.string_forward_declaration() # should probably raise an error at some point
1
>>> x = LateClass()
>>> a = EarlyClass(x)
>>> x2 = a.string_forward_declaration()
>>> assert x is x2, x2
"""
def __init__(self, x):
self.x = x
def string_forward_declaration(self) -> 'LateClass':
return self.x
class LateClass(object):
pass
def py_float_default(price : Optional[float]=None, ndigits=4):
"""
Python default arguments should prevent C type inference.
>>> py_float_default()
(None, 4)
>>> py_float_default(None)
(None, 4)
>>> py_float_default(2) # doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: ...float...
>>> py_float_default(2.0)
(2.0, 4)
>>> py_float_default(2, 3) # doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: ...float...
"""
return price, ndigits
cdef class ClassAttribute:
cls_attr : cython.float = 1.
@cython.cfunc
def take_ptr(obj: cython.pointer(PyObject)):
pass
def call_take_ptr():
"""
>>> call_take_ptr() # really just a compile-test
"""
python_dict = {"abc": 123}
take_ptr(cython.cast(cython.pointer(PyObject), python_dict))
@cython.cclass
class HasPtr:
"""
>>> HasPtr()
HasPtr(1, 1)
"""
a: cython.pointer(cython.int)
b: cython.int
def __init__(self):
self.b = 1
self.a = cython.address(self.b)
def __repr__(self):
return f"HasPtr({self.a[0]}, {self.b})"
@cython.annotation_typing(False)
def turn_off_typing(x: float, d: dict):
"""
>>> turn_off_typing('not a float', []) # ignore the typing
('Python object', 'Python object', 'not a float', [])
"""
return typeof(x), typeof(d), x, d
@cython.annotation_typing(False)
cdef class ClassTurnOffTyping:
x: float
d: dict
def get_var_types(self, arg: float):
"""
>>> ClassTurnOffTyping().get_var_types(1.0)
('Python object', 'Python object', 'Python object')
"""
return typeof(self.x), typeof(self.d), typeof(arg)
@cython.annotation_typing(True)
def and_turn_it_back_on_again(self, arg: float):
"""
>>> ClassTurnOffTyping().and_turn_it_back_on_again(1.0)
('Python object', 'Python object', 'double')
"""
return typeof(self.x), typeof(self.d), typeof(arg)
from cython cimport int as cy_i
def int_alias(a: cython.int, b: cy_i):
"""
>>> int_alias(1, 2)
int
int
"""
print(cython.typeof(a))
print(cython.typeof(b))
_WARNINGS = """
14:32: Strings should no longer be used for type declarations. Use 'cython.int' etc. directly.
14:47: Dicts should no longer be used as type annotations. Use 'cython.int' etc. directly.
14:56: Strings should no longer be used for type declarations. Use 'cython.int' etc. directly.
14:77: Dicts should no longer be used as type annotations. Use 'cython.int' etc. directly.
14:85: Python type declaration in signature annotation does not refer to a Python type
14:85: Strings should no longer be used for type declarations. Use 'cython.int' etc. directly.
36:40: Found Python 2.x type 'long' in a Python annotation. Did you mean to use 'cython.long'?
36:66: PEP-484 recommends 'typing.Optional[...]' for arguments that can be None.
63:44: Found Python 2.x type 'long' in a Python annotation. Did you mean to use 'cython.long'?
63:70: PEP-484 recommends 'typing.Optional[...]' for arguments that can be None.
90:44: Found Python 2.x type 'long' in a Python annotation. Did you mean to use 'cython.long'?
90:70: PEP-484 recommends 'typing.Optional[...]' for arguments that can be None.
152:30: Tuples cannot be declared as simple tuples of types. Use 'tuple[type1, type2, ...]'.
152:59: Tuples cannot be declared as simple tuples of types. Use 'tuple[type1, type2, ...]'.
157:13: Tuples cannot be declared as simple tuples of types. Use 'tuple[type1, type2, ...]'.
292:44: Unknown type declaration in annotation, ignoring
320:15: Annotation ignored since class-level attributes must be Python objects. Were you trying to set up an instance attribute?
# DUPLICATE:
63:44: Found Python 2.x type 'long' in a Python annotation. Did you mean to use 'cython.long'?
# BUG:
63:6: 'pytypes_cpdef' redeclared
164:0: 'struct_io' redeclared
199:0: 'struct_convert' redeclared
218:0: 'exception_default' redeclared
249:0: 'exception_default_uint' redeclared
"""
|