Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
364dcff3
Commit
364dcff3
authored
Jun 01, 2019
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable positional-only arguments tests in Python 3.8+ to compare with CPython's behaviour.
parent
d6d89e9e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
110 additions
and
96 deletions
+110
-96
tests/run/posonly.py
tests/run/posonly.py
+110
-96
No files found.
tests/run/posonly.py
x
→
tests/run/posonly.py
View file @
364dcff3
# cython: always_allow_keywords=True
# mode: run
# tag: posonly
# tag: posonly
, pure3.8
import
cython
import
sys
...
...
@@ -12,14 +12,14 @@ def test_optional_posonly_args1(a, b=10, /, c=100):
6
>>> test_optional_posonly_args1(1, 2, c=3)
6
>>> test_optional_posonly_args1(1, b=2, c=3)
>>> test_optional_posonly_args1(1, b=2, c=3)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_optional_posonly_args1() got
an unexpected keyword argument
'b'
TypeError: test_optional_posonly_args1() got
... keyword argument...
'b'
>>> test_optional_posonly_args1(1, 2)
103
>>> test_optional_posonly_args1(1, b=2)
>>> test_optional_posonly_args1(1, b=2)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_optional_posonly_args1() got
an unexpected keyword argument
'b'
TypeError: test_optional_posonly_args1() got
... keyword argument...
'b'
"""
return
a
+
b
+
c
...
...
@@ -29,14 +29,14 @@ def test_optional_posonly_args2(a=1, b=10, /, c=100):
6
>>> test_optional_posonly_args2(1, 2, c=3)
6
>>> test_optional_posonly_args2(1, b=2, c=3)
>>> test_optional_posonly_args2(1, b=2, c=3)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_optional_posonly_args2() got
an unexpected keyword argument
'b'
TypeError: test_optional_posonly_args2() got
... keyword argument...
'b'
>>> test_optional_posonly_args2(1, 2)
103
>>> test_optional_posonly_args2(1, b=2)
>>> test_optional_posonly_args2(1, b=2)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_optional_posonly_args2() got
an unexpected keyword argument
'b'
TypeError: test_optional_posonly_args2() got
... keyword argument...
'b'
>>> test_optional_posonly_args2(1, c=2)
13
"""
...
...
@@ -72,14 +72,16 @@ def test_optional_posonly_args2(a=1, b=10, /, c=100):
# """
# return (a299, b, c, d)
#TODO: update this test for Python 3.8
#TODO: update this test for Python 3.8
final
@
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
... assert func_introspection2.__code__.co_argcount == 7, func_introspection2.__code__.co_argcount
... elif sys.version_info < (3, 8):
... assert func_introspection2.__code__.co_argcount == 5, func_introspection2.__code__.co_argcount
... else:
... assert func_introspection2.__code__.co_argcount ==
5
... assert func_introspection2.__code__.co_argcount ==
2, func_introspection2.__code__.co_argcount
>>> func_introspection1.__defaults__
(1,)
"""
...
...
@@ -88,9 +90,11 @@ def func_introspection1(a, b, c, /, d, e=1, *, f, g=2):
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
... assert func_introspection2.__code__.co_argcount == 7, func_introspection2.__code__.co_argcount
... elif sys.version_info < (3, 8):
... assert func_introspection2.__code__.co_argcount == 5, func_introspection2.__code__.co_argcount
... else:
... assert func_introspection2.__code__.co_argcount ==
5
... assert func_introspection2.__code__.co_argcount ==
2, func_introspection2.__code__.co_argcount
>>> func_introspection2.__defaults__
(1, 2, 3)
"""
...
...
@@ -105,18 +109,18 @@ def test_pos_only_call_via_unpacking(a, b, /):
def
test_use_positional_as_keyword1
(
a
,
/
):
"""
>>> test_use_positional_as_keyword1(1)
>>> test_use_positional_as_keyword1(a=1)
>>> test_use_positional_as_keyword1(a=1)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_use_positional_as_keyword1()
takes no keyword arguments
TypeError: test_use_positional_as_keyword1()
... keyword arguments...
"""
def
test_use_positional_as_keyword2
(
a
,
/
,
b
):
"""
>>> test_use_positional_as_keyword2(1, 2)
>>> test_use_positional_as_keyword2(1, b=2)
>>> test_use_positional_as_keyword2(a=1, b=2)
>>> test_use_positional_as_keyword2(a=1, b=2)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_use_positional_as_keyword2()
takes exactly 2 positional arguments (0 given)
TypeError: test_use_positional_as_keyword2()
... positional...arguments...
"""
def
test_use_positional_as_keyword3
(
a
,
b
,
/
):
...
...
@@ -124,60 +128,60 @@ def test_use_positional_as_keyword3(a, b, /):
>>> test_use_positional_as_keyword3(1, 2)
>>> test_use_positional_as_keyword3(a=1, b=2) # doctest:+ELLIPSIS
Traceback (most recent call last):
TypeError: test_use_positional_as_keyword3() got
an unexpected keyword argument '...'
TypeError: test_use_positional_as_keyword3() got
... keyword argument...
"""
def
test_positional_only_and_arg_invalid_calls
(
a
,
b
,
/
,
c
):
"""
>>> test_positional_only_and_arg_invalid_calls(1, 2, 3)
>>> test_positional_only_and_arg_invalid_calls(1, 2, c=3)
>>> test_positional_only_and_arg_invalid_calls(1, 2)
>>> test_positional_only_and_arg_invalid_calls(1, 2)
# doctest: +ELLIPSIS
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)
TypeError: test_positional_only_and_arg_invalid_calls()
... positional argument...
>>> test_positional_only_and_arg_invalid_calls(1)
# doctest: +ELLIPSIS
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)
TypeError: test_positional_only_and_arg_invalid_calls()
... positional arguments...
>>> test_positional_only_and_arg_invalid_calls(1,2,3,4)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_positional_only_and_arg_invalid_calls() takes
exactly 3 positional arguments (4 given)
TypeError: test_positional_only_and_arg_invalid_calls() takes
... 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)
>>> test_positional_only_and_optional_arg_invalid_calls(1)
# doctest: +ELLIPSIS
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()
TypeError: test_positional_only_and_optional_arg_invalid_calls()
... positional argument...
>>> test_positional_only_and_optional_arg_invalid_calls()
# doctest: +ELLIPSIS
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)
TypeError: test_positional_only_and_optional_arg_invalid_calls()
... positional arguments...
>>> test_positional_only_and_optional_arg_invalid_calls(1, 2, 3, 4)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_positional_only_and_optional_arg_invalid_calls() takes
at most 3 positional arguments (4 given)
TypeError: test_positional_only_and_optional_arg_invalid_calls() takes
... positional arguments ...4 ...given...
"""
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)
>>> test_positional_only_and_kwonlyargs_invalid_calls(1, 2, 3, e=2)
# doctest: +ELLIPSIS
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)
TypeError: test_positional_only_and_kwonlyargs_invalid_calls()
... keyword-only argument...d...
>>> test_positional_only_and_kwonlyargs_invalid_calls(1, 2, 3)
# doctest: +ELLIPSIS
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)
TypeError: test_positional_only_and_kwonlyargs_invalid_calls()
... keyword-only argument...d...
>>> test_positional_only_and_kwonlyargs_invalid_calls(1, 2)
# doctest: +ELLIPSIS
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)
TypeError: test_positional_only_and_kwonlyargs_invalid_calls()
... positional argument...
>>> test_positional_only_and_kwonlyargs_invalid_calls(1)
# doctest: +ELLIPSIS
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()
TypeError: test_positional_only_and_kwonlyargs_invalid_calls()
... positional arguments...
>>> test_positional_only_and_kwonlyargs_invalid_calls()
# doctest: +ELLIPSIS
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)
TypeError: test_positional_only_and_kwonlyargs_invalid_calls()
... positional arguments...
>>> test_positional_only_and_kwonlyargs_invalid_calls(1, 2, 3, 4, 5, 6, d=7, e=8)
# doctest: +ELLIPSIS
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)
TypeError: test_positional_only_and_kwonlyargs_invalid_calls() takes
... positional arguments ...
>>> test_positional_only_and_kwonlyargs_invalid_calls(1, 2, 3, d=1, e=4, f=56)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_positional_only_and_kwonlyargs_invalid_calls() got an unexpected keyword argument 'f'
"""
...
...
@@ -185,34 +189,34 @@ def test_positional_only_and_kwonlyargs_invalid_calls(a, b, /, c, *, d, e):
def
test_positional_only_invalid_calls
(
a
,
b
,
/
):
"""
>>> test_positional_only_invalid_calls(1, 2)
>>> test_positional_only_invalid_calls(1)
>>> test_positional_only_invalid_calls(1)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_positional_only_invalid_calls()
takes exactly 2 positional arguments (1 given)
>>> test_positional_only_invalid_calls()
TypeError: test_positional_only_invalid_calls()
... positional argument...
>>> test_positional_only_invalid_calls()
# doctest: +ELLIPSIS
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)
TypeError: test_positional_only_invalid_calls()
... positional arguments...
>>> test_positional_only_invalid_calls(1, 2, 3)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_positional_only_invalid_calls() takes
exactly 2 positional arguments (3 given)
TypeError: test_positional_only_invalid_calls() takes
... 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()
>>> test_positional_only_with_optional_invalid_calls()
# doctest: +ELLIPSIS
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)
TypeError: test_positional_only_with_optional_invalid_calls()
... positional argument...
>>> test_positional_only_with_optional_invalid_calls(1, 2, 3)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_positional_only_with_optional_invalid_calls() takes
at most 2 positional arguments (3 given)
TypeError: test_positional_only_with_optional_invalid_calls() takes
... 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)
>>> test_no_standard_args_usage(1, b=2, c=3)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_no_standard_args_usage()
takes exactly 2 positional arguments (1 given)
TypeError: test_no_standard_args_usage()
... positional... arguments...
"""
#def test_change_default_pos_only():
...
...
@@ -262,9 +266,9 @@ class TestPosonlyMethods(object):
... except TypeError:
... print("Got type error")
Got type error
>>> TestPosonlyMethods().f(1, b=2)
>>> TestPosonlyMethods().f(1, b=2)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: f() got
an unexpected keyword argument
'b'
TypeError: f() got
... keyword argument...
'b'
"""
def
f
(
self
,
a
,
b
,
/
):
return
a
,
b
...
...
@@ -275,16 +279,19 @@ class TestMangling(object):
42
>>> TestMangling().f2()
42
>>> TestMangling().f3()
(42, 43)
>>> TestMangling().f4()
(42, 43, 44)
#>>> 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)
#>>> TestMangling().f3(1, _TestMangling__b=2)
#(1, 2)
#>>> TestMangling().f4(1, _TestMangling__b=2, _TestMangling__c=3)
#(1, 2, 3)
"""
def
f
(
self
,
*
,
__a
=
42
):
return
__a
...
...
@@ -292,30 +299,31 @@ class TestMangling(object):
def
f2
(
self
,
__a
=
42
,
/
):
return
__a
def
f3
(
self
,
__a
=
42
,
/
,
__b
=
43
):
return
(
__a
,
__b
)
# FIXME: https://github.com/cython/cython/issues/1382
# def f3(self, __a=42, /, __b=43):
# return (__a, __b)
def
f4
(
self
,
__a
=
42
,
/
,
__b
=
43
,
*
,
__c
=
44
):
return
(
__a
,
__b
,
__c
)
#
def f4(self, __a=42, /, __b=43, *, __c=44):
#
return (__a, __b, __c)
def
test_module_function
(
a
,
b
,
/
):
"""
>>> test_module_function(1, 2)
>>> test_module_function()
>>> test_module_function()
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_module_function()
takes exactly 2 positional arguments (0 given)
TypeError: test_module_function()
... positional arguments...
"""
def
test_closures1
(
x
,
y
):
"""
>>> test_closures1(1,2)(3,4)
10
>>> test_closures1(1,2)(3)
>>> test_closures1(1,2)(3)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: g()
takes exactly 2 positional arguments (1 given)
>>> test_closures1(1,2)(3,4,5)
TypeError: g()
... positional argument...
>>> test_closures1(1,2)(3,4,5)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: g()
takes exactly 2 positional arguments (3 given)
TypeError: g()
... positional argument...
"""
def
g
(
x2
,
/
,
y2
):
return
x
+
y
+
x2
+
y2
...
...
@@ -330,28 +338,30 @@ def test_closures2(x,/,y):
return
x
+
y
+
x2
+
y2
return
g
def
test_closures3
(
x
,
/
,
y
):
"""
>>> test_closures3(1,2)(3,4)
10
>>> test_closures3(1,2)(3)
>>> test_closures3(1,2)(3)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: g()
takes exactly 2 positional arguments (1 given)
>>> test_closures3(1,2)(3,4,5)
TypeError: g()
... positional argument...
>>> test_closures3(1,2)(3,4,5)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: g()
takes exactly 2 positional arguments (3 given)
TypeError: g()
... positional argument...
"""
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)
>>> test_same_keyword_as_positional_with_kwargs(something=42)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_same_keyword_as_positional_with_kwargs()
takes exactly 1 positional argument (0 given)
TypeError: test_same_keyword_as_positional_with_kwargs()
... positional argument...
>>> test_same_keyword_as_positional_with_kwargs(42)
(42, {})
"""
...
...
@@ -363,9 +373,9 @@ def test_serialization1(a, b, /):
>>> unpickled_posonly = pickle.loads(pickled_posonly)
>>> unpickled_posonly(1, 2)
(1, 2)
>>> unpickled_posonly(a=1, b=2) # doctest: +ELLIPSIS
>>> unpickled_posonly(a=1, b=2)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_serialization1() got
an unexpected keyword argument '...'
TypeError: test_serialization1() got
... keyword argument...
"""
return
(
a
,
b
)
...
...
@@ -375,9 +385,9 @@ def test_serialization2(a, /, b):
>>> unpickled_optional = pickle.loads(pickled_optional)
>>> unpickled_optional(1, 2)
(1, 2)
>>> unpickled_optional(a=1, b=2)
>>> unpickled_optional(a=1, b=2)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_serialization2()
takes exactly 2 positional arguments (0 given)
TypeError: test_serialization2()
... positional... arguments...
"""
return
(
a
,
b
)
...
...
@@ -387,20 +397,22 @@ def test_serialization3(a=1, /, b=2):
>>> unpickled_defaults = pickle.loads(pickled_defaults)
>>> unpickled_defaults(1, 2)
(1, 2)
>>> unpickled_defaults(a=1, b=2)
>>> unpickled_defaults(a=1, b=2)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_serialization3() got
an unexpected keyword argument
'a'
TypeError: test_serialization3() got
... keyword argument...
'a'
"""
return
(
a
,
b
)
async
def
test_async
(
a
=
1
,
/
,
b
=
2
):
"""
>>> test_async(a=1, b=2)
>>> test_async(a=1, b=2)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_async() got
an unexpected keyword argument
'a'
TypeError: test_async() got
... keyword argument...
'a'
"""
return
a
,
b
def
test_async_call
(
*
args
,
**
kwargs
):
"""
>>> test_async_call(1, 2)
...
...
@@ -415,14 +427,14 @@ def test_async_call(*args, **kwargs):
coro
.
send
(
None
)
except
StopIteration
as
e
:
result
=
e
.
value
assert
result
==
(
1
,
2
)
assert
result
==
(
1
,
2
)
,
result
def
test_generator
(
a
=
1
,
/
,
b
=
2
):
"""
>>> test_generator(a=1, b=2)
>>> test_generator(a=1, b=2)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: test_generator() got
an unexpected keyword argument
'a'
TypeError: test_generator() got
... keyword argument...
'a'
>>> gen = test_generator(1, 2)
>>> next(gen)
(1, 2)
...
...
@@ -541,7 +553,9 @@ def test_empty_kwargs(a, b, /):
"""
return
(
a
,
b
)
cdef
class
TestExtensionClass
:
@
cython
.
cclass
class
TestExtensionClass
:
"""
>>> t = TestExtensionClass()
>>> t.f(1,2)
...
...
@@ -550,9 +564,9 @@ cdef class TestExtensionClass:
(1, 2, 4)
>>> t.f(1, 2, c=4)
(1, 2, 4)
>>> t.f(1, 2, 5, c=6)
>>> t.f(1, 2, 5, c=6)
# doctest: +ELLIPSIS
Traceback (most recent call last):
TypeError: f() got multiple values for
keyword
argument 'c'
TypeError: f() got multiple values for
...
argument 'c'
"""
def
f
(
self
,
a
,
b
,
/
,
c
=
3
):
return
(
a
,
b
,
c
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment