posonly.pyx 16.4 KB
Newer Older
1 2 3 4 5 6
# mode: run
# tag: posonly

# TODO: remove posonly tag before merge

import cython
7 8
import sys
import pickle
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

def test_optional_posonly_args1(a, b=10, /, c=100):
    """
    >>> test_optional_posonly_args1(1, 2, 3)
    6
    >>> test_optional_posonly_args1(1, 2, c=3)
    6
    >>> test_optional_posonly_args1(1, b=2, c=3)
    Traceback (most recent call last):
    TypeError: test_optional_posonly_args1() got an unexpected keyword argument 'b'
    >>> test_optional_posonly_args1(1, 2)
    103
    >>> test_optional_posonly_args1(1, b=2)
    Traceback (most recent call last):
    TypeError: test_optional_posonly_args1() got an unexpected keyword argument 'b'
    """
    return a + b + c

def test_optional_posonly_args2(a=1, b=10, /, c=100):
    """
    >>> test_optional_posonly_args2(1, 2, 3)
    6
    >>> test_optional_posonly_args2(1, 2, c=3)
    6
    >>> test_optional_posonly_args2(1, b=2, c=3)
    Traceback (most recent call last):
    TypeError: test_optional_posonly_args2() got an unexpected keyword argument 'b'
    >>> test_optional_posonly_args2(1, 2)
    103
    >>> test_optional_posonly_args2(1, b=2)
    Traceback (most recent call last):
    TypeError: test_optional_posonly_args2() got an unexpected keyword argument 'b'
    >>> test_optional_posonly_args2(1, c=2)
    13
    """
    return a + b + c

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
# TODO: this causes a line that is too long for old versions of Clang
#def many_args(a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17,a18,a19,a20,a21,
#              a22,a23,a24,a25,a26,a27,a28,a29,a30,a31,a32,a33,a34,a35,a36,a37,a38,a39,a40,
#              a41,a42,a43,a44,a45,a46,a47,a48,a49,a50,a51,a52,a53,a54,a55,a56,a57,a58,a59,
#              a60,a61,a62,a63,a64,a65,a66,a67,a68,a69,a70,a71,a72,a73,a74,a75,a76,a77,a78,
#              a79,a80,a81,a82,a83,a84,a85,a86,a87,a88,a89,a90,a91,a92,a93,a94,a95,a96,a97,
#              a98,a99,a100,a101,a102,a103,a104,a105,a106,a107,a108,a109,a110,a111,a112,
#              a113,a114,a115,a116,a117,a118,a119,a120,a121,a122,a123,a124,a125,a126,a127,
#              a128,a129,a130,a131,a132,a133,a134,a135,a136,a137,a138,a139,a140,a141,a142,
#              a143,a144,a145,a146,a147,a148,a149,a150,a151,a152,a153,a154,a155,a156,a157,
#              a158,a159,a160,a161,a162,a163,a164,a165,a166,a167,a168,a169,a170,a171,a172,
#              a173,a174,a175,a176,a177,a178,a179,a180,a181,a182,a183,a184,a185,a186,a187,
#              a188,a189,a190,a191,a192,a193,a194,a195,a196,a197,a198,a199,a200,a201,a202,
#              a203,a204,a205,a206,a207,a208,a209,a210,a211,a212,a213,a214,a215,a216,a217,
#              a218,a219,a220,a221,a222,a223,a224,a225,a226,a227,a228,a229,a230,a231,a232,
#              a233,a234,a235,a236,a237,a238,a239,a240,a241,a242,a243,a244,a245,a246,a247,
#              a248,a249,a250,a251,a252,a253,a254,a255,a256,a257,a258,a259,a260,a261,a262,
#              a263,a264,a265,a266,a267,a268,a269,a270,a271,a272,a273,a274,a275,a276,a277,
#              a278,a279,a280,a281,a282,a283,a284,a285,a286,a287,a288,a289,a290,a291,a292,
#              a293,a294,a295,a296,a297,a298,a299,/,b,c=42,*,d):
#    """
#    >>> many_args(*range(299),b=1,c=2,d=3)
#    (298, 1, 2, 3)
#    >>> many_args(*range(299),b=1,d=3)
#    (298, 1, 42, 3)
#    >>> many_args(*range(300),d=3)
#    (298, 299, 42, 3)
#    """
#    return (a299, b, c, d)
75

76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
#TODO: update this test for Python 3.8
@cython.binding(True)
def func_introspection1(a, b, c, /, d, e=1, *, f, g=2):
    """
    >>> if sys.version_info[0] < 3:
    ...     assert func_introspection2.__code__.co_argcount == 7
    ... else:
    ...     assert func_introspection2.__code__.co_argcount == 5
    >>> func_introspection1.__defaults__
    (1,)
    """

@cython.binding(True)
def func_introspection2(a, b, c=1, /, d=2, e=3, *, f, g=4):
    """
    >>> if sys.version_info[0] < 3:
    ...     assert func_introspection2.__code__.co_argcount == 7
    ... else:
    ...     assert func_introspection2.__code__.co_argcount == 5
    >>> func_introspection2.__defaults__
    (1, 2, 3)
    """
98 99 100 101 102 103 104 105 106 107

def test_pos_only_call_via_unpacking(a, b, /):
    """
    >>> test_pos_only_call_via_unpacking(*[1,2])
    3
    """
    return a + b

def test_use_positional_as_keyword1(a, /):
    """
108
    >>> test_use_positional_as_keyword1(1)
109 110 111 112 113 114 115
    >>> test_use_positional_as_keyword1(a=1)
    Traceback (most recent call last):
    TypeError: test_use_positional_as_keyword1() takes no keyword arguments
    """

def test_use_positional_as_keyword2(a, /, b):
    """
116 117
    >>> test_use_positional_as_keyword2(1, 2)
    >>> test_use_positional_as_keyword2(1, b=2)
118 119 120 121 122 123 124
    >>> test_use_positional_as_keyword2(a=1, b=2)
    Traceback (most recent call last):
    TypeError: test_use_positional_as_keyword2() takes exactly 2 positional arguments (0 given)
    """

def test_use_positional_as_keyword3(a, b, /):
    """
125
    >>> test_use_positional_as_keyword3(1, 2)
126 127 128 129 130 131 132
    >>> test_use_positional_as_keyword3(a=1, b=2)
    Traceback (most recent call last):
    TypeError: test_use_positional_as_keyword3() takes exactly 2 positional arguments (0 given)
    """

def test_positional_only_and_arg_invalid_calls(a, b, /, c):
    """
133 134
    >>> test_positional_only_and_arg_invalid_calls(1, 2, 3)
    >>> test_positional_only_and_arg_invalid_calls(1, 2, c=3)
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
    >>> test_positional_only_and_arg_invalid_calls(1, 2)
    Traceback (most recent call last):
    TypeError: test_positional_only_and_arg_invalid_calls() takes exactly 3 positional arguments (2 given)
    >>> test_positional_only_and_arg_invalid_calls(1)
    Traceback (most recent call last):
    TypeError: test_positional_only_and_arg_invalid_calls() takes exactly 3 positional arguments (1 given)
    >>> test_positional_only_and_arg_invalid_calls(1,2,3,4)
    Traceback (most recent call last):
    TypeError: test_positional_only_and_arg_invalid_calls() takes exactly 3 positional arguments (4 given)
    """

def test_positional_only_and_optional_arg_invalid_calls(a, b, /, c=3):
    """
    >>> test_positional_only_and_optional_arg_invalid_calls(1, 2)
    >>> test_positional_only_and_optional_arg_invalid_calls(1)
    Traceback (most recent call last):
    TypeError: test_positional_only_and_optional_arg_invalid_calls() takes at least 2 positional arguments (1 given)
    >>> test_positional_only_and_optional_arg_invalid_calls()
    Traceback (most recent call last):
    TypeError: test_positional_only_and_optional_arg_invalid_calls() takes at least 2 positional arguments (0 given)
    >>> test_positional_only_and_optional_arg_invalid_calls(1, 2, 3, 4)
    Traceback (most recent call last):
    TypeError: test_positional_only_and_optional_arg_invalid_calls() takes at most 3 positional arguments (4 given)
    """
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

def test_positional_only_and_kwonlyargs_invalid_calls(a, b, /, c, *, d, e):
    """
    >>> test_positional_only_and_kwonlyargs_invalid_calls(1, 2, 3, d=1, e=2)
    >>> test_positional_only_and_kwonlyargs_invalid_calls(1, 2, 3, e=2)
    Traceback (most recent call last):
    TypeError: test_positional_only_and_kwonlyargs_invalid_calls() needs keyword-only argument d
    >>> test_positional_only_and_kwonlyargs_invalid_calls(1, 2, 3)
    Traceback (most recent call last):
    TypeError: test_positional_only_and_kwonlyargs_invalid_calls() needs keyword-only argument d
    >>> test_positional_only_and_kwonlyargs_invalid_calls(1, 2)
    Traceback (most recent call last):
    TypeError: test_positional_only_and_kwonlyargs_invalid_calls() takes exactly 3 positional arguments (2 given)
    >>> test_positional_only_and_kwonlyargs_invalid_calls(1)
    Traceback (most recent call last):
    TypeError: test_positional_only_and_kwonlyargs_invalid_calls() takes exactly 3 positional arguments (1 given)
    >>> test_positional_only_and_kwonlyargs_invalid_calls()
    Traceback (most recent call last):
    TypeError: test_positional_only_and_kwonlyargs_invalid_calls() takes exactly 3 positional arguments (0 given)
    >>> test_positional_only_and_kwonlyargs_invalid_calls(1, 2, 3, 4, 5, 6, d=7, e=8)
    Traceback (most recent call last):
    TypeError: test_positional_only_and_kwonlyargs_invalid_calls() takes exactly 3 positional arguments (6 given)
    >>> test_positional_only_and_kwonlyargs_invalid_calls(1, 2, 3, d=1, e=4, f=56)
    Traceback (most recent call last):
    TypeError: test_positional_only_and_kwonlyargs_invalid_calls() got an unexpected keyword argument 'f'
    """
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

def test_positional_only_invalid_calls(a, b, /):
    """
    >>> test_positional_only_invalid_calls(1, 2)
    >>> test_positional_only_invalid_calls(1)
    Traceback (most recent call last):
    TypeError: test_positional_only_invalid_calls() takes exactly 2 positional arguments (1 given)
    >>> test_positional_only_invalid_calls()
    Traceback (most recent call last):
    TypeError: test_positional_only_invalid_calls() takes exactly 2 positional arguments (0 given)
    >>> test_positional_only_invalid_calls(1, 2, 3)
    Traceback (most recent call last):
    TypeError: test_positional_only_invalid_calls() takes exactly 2 positional arguments (3 given)
    """

def test_positional_only_with_optional_invalid_calls(a, b=2, /):
    """
    >>> test_positional_only_with_optional_invalid_calls(1)
    >>> test_positional_only_with_optional_invalid_calls()
    Traceback (most recent call last):
    TypeError: test_positional_only_with_optional_invalid_calls() takes at least 1 positional argument (0 given)
    >>> test_positional_only_with_optional_invalid_calls(1, 2, 3)
    Traceback (most recent call last):
    TypeError: test_positional_only_with_optional_invalid_calls() takes at most 2 positional arguments (3 given)
    """

def test_no_standard_args_usage(a, b, /, *, c):
    """
    >>> test_no_standard_args_usage(1, 2, c=3)
    >>> test_no_standard_args_usage(1, b=2, c=3)
    Traceback (most recent call last):
    TypeError: test_no_standard_args_usage() takes exactly 2 positional arguments (1 given)
    """

#def test_change_default_pos_only():
220
# TODO: probably remove this, since  __defaults__ is not writable in Cython?
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
#    """
#    >>> test_change_default_pos_only()
#    True
#    True
#    """
#    def f(a, b=2, /, c=3):
#        return a + b + c
#
#    print((2,3) == f.__defaults__)
#    f.__defaults__ = (1, 2, 3)
#    print(f(1, 2, 3) == 6)

def test_lambdas():
    """
    >>> test_lambdas()
    3
    3
    3
    3
    3
    """
    x = lambda a, /, b: a + b
    print(x(1,2))
    print(x(1,b=2))

    x = lambda a, /, b=2: a + b
    print(x(1))

    x = lambda a, b, /: a + b
    print(x(1, 2))

    x = lambda a, b, /, : a + b
    print(x(1, 2))

255
class TestPosonlyMethods(object):
256
    """
257
    >>> TestPosonlyMethods().f(1,2)
258
    (1, 2)
259
    >>> TestPosonlyMethods.f(TestPosonlyMethods(), 1, 2)
260 261
    (1, 2)
    >>> try:
262
    ...     TestPosonlyMethods.f(1,2)
263 264 265
    ... except TypeError:
    ...    print("Got type error")
    Got type error
266
    >>> TestPosonlyMethods().f(1, b=2)
267 268 269
    Traceback (most recent call last):
    TypeError: f() takes exactly 3 positional arguments (2 given)
    """
270 271
    def f(self, a, b, /):
        return a, b
272

273
class TestMangling(object):
274
    """
275
    >>> TestMangling().f()
276
    42
277 278 279 280 281 282 283 284 285 286 287 288
    >>> TestMangling().f2()
    42
    >>> TestMangling().f3()
    (42, 43)
    >>> TestMangling().f4()
    (42, 43, 44)
    >>> TestMangling().f2(1)
    1
    >>> TestMangling().f3(1, __b=2)
    (1, 2)
    >>> TestMangling().f4(1, __b=2, __c=3)
    (1, 2, 3)
289
    """
290 291 292 293 294 295 296 297
    def f(self, *, __a=42):
        return __a

    def f2(self, __a=42, /):
        return __a

    def f3(self, __a=42, /, __b=43):
        return (__a, __b)
298

299 300
    def f4(self, __a=42, /, __b=43, *, __c=44):
        return (__a, __b, __c)
301

302
def test_module_function(a, b, /):
303
    """
304 305
    >>> test_module_function(1, 2)
    >>> test_module_function()
306
    Traceback (most recent call last):
307
    TypeError: test_module_function() takes exactly 2 positional arguments (0 given)
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
    """

def test_closures1(x,y):
    """
    >>> test_closures1(1,2)(3,4)
    10
    >>> test_closures1(1,2)(3)
    Traceback (most recent call last):
    TypeError: g() takes exactly 2 positional arguments (1 given)
    >>> test_closures1(1,2)(3,4,5)
    Traceback (most recent call last):
    TypeError: g() takes exactly 2 positional arguments (3 given)
    """
    def g(x2,/,y2):
        return x + y + x2 + y2
    return g

def test_closures2(x,/,y):
    """
    >>> test_closures2(1,2)(3,4)
    10
    """
    def g(x2,y2):
        return x + y + x2 + y2
    return g

def test_closures3(x,/,y):
    """
    >>> test_closures3(1,2)(3,4)
    10
    >>> test_closures3(1,2)(3)
    Traceback (most recent call last):
    TypeError: g() takes exactly 2 positional arguments (1 given)
    >>> test_closures3(1,2)(3,4,5)
    Traceback (most recent call last):
    TypeError: g() takes exactly 2 positional arguments (3 given)
    """
    def g(x2,/,y2):
        return x + y + x2 + y2
    return g

def test_same_keyword_as_positional_with_kwargs(something, /, **kwargs):
    """
    >>> test_same_keyword_as_positional_with_kwargs(42, something=42)
    (42, {'something': 42})
    >>> test_same_keyword_as_positional_with_kwargs(something=42)
    Traceback (most recent call last):
    TypeError: test_same_keyword_as_positional_with_kwargs() takes exactly 1 positional argument (0 given)
    >>> test_same_keyword_as_positional_with_kwargs(42)
    (42, {})
    """
    return (something, kwargs)
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 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497

def test_serialization1(a, b, /):
    """
    >>> pickled_posonly = pickle.dumps(test_serialization1)
    >>> unpickled_posonly = pickle.loads(pickled_posonly)
    >>> unpickled_posonly(1, 2)
    (1, 2)
    >>> unpickled_posonly(a=1, b=2)
    Traceback (most recent call last):
    TypeError: test_serialization1() takes exactly 2 positional arguments (0 given)
    """
    return (a, b)

def test_serialization2(a, /, b):
    """
    >>> pickled_optional = pickle.dumps(test_serialization2)
    >>> unpickled_optional = pickle.loads(pickled_optional)
    >>> unpickled_optional(1, 2)
    (1, 2)
    >>> unpickled_optional(a=1, b=2)
    Traceback (most recent call last):
    TypeError: test_serialization2() takes exactly 2 positional arguments (0 given)
    """
    return (a, b)

def test_serialization3(a=1, /, b=2):
    """
    >>> pickled_defaults = pickle.dumps(test_serialization3)
    >>> unpickled_defaults = pickle.loads(pickled_defaults)
    >>> unpickled_defaults(1, 2)
    (1, 2)
    >>> unpickled_defaults(a=1, b=2)
    Traceback (most recent call last):
    TypeError: test_serialization3() got an unexpected keyword argument 'a'
    """
    return (a, b)

async def test_async(a=1, /, b=2):
    """
    >>> test_async(a=1, b=2)
    Traceback (most recent call last):
    TypeError: test_async() got an unexpected keyword argument 'a'
    """
    return a, b

def test_async_call(*args, **kwargs):
    """
    >>> test_async_call(1, 2)
    >>> test_async_call(1, b=2)
    >>> test_async_call(1)
    >>> test_async_call()
    """
    if sys.version_info < (3, 6):
        return
    try:
        coro = test_async(*args, **kwargs)
        coro.send(None)
    except StopIteration as e:
        result = e.value
    assert result == (1, 2)


def test_generator(a=1, /, b=2):
    """
    >>> test_generator(a=1, b=2)
    Traceback (most recent call last):
    TypeError: test_generator() got an unexpected keyword argument 'a'
    >>> gen = test_generator(1, 2)
    >>> next(gen)
    (1, 2)
    >>> gen = test_generator(1, b=2)
    >>> next(gen)
    (1, 2)
    >>> gen = test_generator(1)
    >>> next(gen)
    (1, 2)
    >>> gen = test_generator()
    >>> next(gen)
    (1, 2)
    """
    yield a, b

def f_call_1_0_0(a,/):
    """
    >>> f_call_1_0_0(1)
    (1,)
    """
    return (a,)

def f_call_1_1_0(a,/,b):
    """
    >>> f_call_1_1_0(1,2)
    (1, 2)
    """
    return (a,b)

def f_call_1_1_1(a,/,b,*,c):
    """
    >>> f_call_1_1_1(1,2,c=3)
    (1, 2, 3)
    """
    return (a,b,c)

def f_call_1_1_1_star(a,/,b,*args,c):
    """
    >>> f_call_1_1_1_star(1,2,c=3)
    (1, 2, (), 3)
    >>> f_call_1_1_1_star(1,2,3,4,5,6,7,8,c=9)
    (1, 2, (3, 4, 5, 6, 7, 8), 9)
    """
    return (a,b,args,c)

def f_call_1_1_1_kwds(a,/,b,*,c,**kwds):
    """
    >>> f_call_1_1_1_kwds(1,2,c=3)
    (1, 2, 3, {})
    >>> f_call_1_1_1_kwds(1,2,c=3,d=4,e=5) == (1, 2, 3, {'d': 4, 'e': 5})
    True
    """
    return (a,b,c,kwds)

def f_call_1_1_1_star_kwds(a,/,b,*args,c,**kwds):
    """
    >>> f_call_1_1_1_star_kwds(1,2,c=3,d=4,e=5) == (1, 2, (), 3, {'d': 4, 'e': 5})
    True
    >>> f_call_1_1_1_star_kwds(1,2,3,4,c=5,d=6,e=7) == (1, 2, (3, 4), 5, {'d': 6, 'e': 7})
    True
    """
    return (a,b,args,c,kwds)

def f_call_one_optional_kwd(a,/,*,b=2):
    """
    >>> f_call_one_optional_kwd(1)
    (1, 2)
    >>> f_call_one_optional_kwd(1, b=3)
    (1, 3)
    """
    return (a,b)