Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
b7666a30
Commit
b7666a30
authored
9 years ago
by
Yury Selivanov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #24619: More tests; fix nits in compiler.c
parent
8fb307cd
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
9 deletions
+9
-9
Lib/test/badsyntax_async2.py
Lib/test/badsyntax_async2.py
+1
-1
Lib/test/test_coroutines.py
Lib/test/test_coroutines.py
+5
-4
Python/compile.c
Python/compile.c
+2
-3
Python/symtable.c
Python/symtable.c
+1
-1
No files found.
Lib/test/badsyntax_async2.py
View file @
b7666a30
async
def
foo
(
a
:
await
something
()):
async
def
foo
(
a
=
await
something
()):
pass
This diff is collapsed.
Click to expand it.
Lib/test/test_coroutines.py
View file @
b7666a30
...
...
@@ -205,12 +205,14 @@ class AsyncBadSyntaxTest(unittest.TestCase):
return lambda a: await
"""
,
"""async def foo(a: await b):
"""await a()"""
,
"""async def foo(a=await b):
pass
"""
,
"""def baz():
async def foo(a
:
await b):
async def foo(a
=
await b):
pass
"""
,
...
...
@@ -271,10 +273,9 @@ class AsyncBadSyntaxTest(unittest.TestCase):
pass
\
n
await a
"""
]
ns
=
{}
for
code
in
samples
:
with
self
.
subTest
(
code
=
code
),
self
.
assertRaises
(
SyntaxError
):
exec
(
code
,
ns
,
ns
)
compile
(
code
,
"<test>"
,
"exec"
)
def
test_goodsyntax_1
(
self
):
# Tests for issue 24619
...
...
This diff is collapsed.
Click to expand it.
Python/compile.c
View file @
b7666a30
...
...
@@ -1749,13 +1749,12 @@ compiler_function(struct compiler *c, stmt_ty s, int is_async)
arglength
=
asdl_seq_LEN
(
args
->
defaults
);
arglength
|=
kw_default_count
<<
8
;
arglength
|=
num_annotations
<<
16
;
if
(
is_async
)
co
->
co_flags
|=
CO_COROUTINE
;
compiler_make_closure
(
c
,
co
,
arglength
,
qualname
);
Py_DECREF
(
qualname
);
Py_DECREF
(
co
);
if
(
is_async
)
co
->
co_flags
|=
CO_COROUTINE
;
/* decorators */
for
(
i
=
0
;
i
<
asdl_seq_LEN
(
decos
);
i
++
)
{
ADDOP_I
(
c
,
CALL_FUNCTION
,
1
);
...
...
This diff is collapsed.
Click to expand it.
Python/symtable.c
View file @
b7666a30
...
...
@@ -1542,7 +1542,7 @@ symtable_visit_annotations(struct symtable *st, stmt_ty s,
if
(
a
->
kwonlyargs
&&
!
symtable_visit_argannotations
(
st
,
a
->
kwonlyargs
))
return
0
;
if
(
returns
)
VISIT
(
st
,
expr
,
s
->
v
.
FunctionDef
.
returns
);
VISIT
(
st
,
expr
,
returns
);
return
1
;
}
...
...
This diff is collapsed.
Click to expand it.
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