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
003663d7
Commit
003663d7
authored
Mar 28, 2000
by
Jeremy Hylton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix previous checkin
parent
aed0d8de
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
24 deletions
+8
-24
Lib/test/output/test_extcall
Lib/test/output/test_extcall
+7
-0
Lib/test/output/test_grammar
Lib/test/output/test_grammar
+0
-23
Lib/test/test_extcall.py
Lib/test/test_extcall.py
+1
-1
No files found.
Lib/test/output/test_extcall
View file @
003663d7
...
...
@@ -4,6 +4,8 @@ test_extcall
(1, 2) {}
(1, 2, 3) {}
(1, 2, 3, 4, 5) {}
(1, 2, 3, 4, 5) {}
(1, 2, 3, 4, 5) {}
(1, 2, 3) {'b': 5, 'a': 4}
(1, 2, 3, 4, 5) {'b': 7, 'a': 6}
(1, 2, 3, 6, 7) {'y': 5, 'b': 9, 'x': 4, 'a': 8}
...
...
@@ -16,3 +18,8 @@ TypeError: not enough arguments; expected 1, got 0
1 (2, 3, 4, 5) {}
keyword parameter redefined: x
keyword parameter redefined: b
keywords must be strings
unexpected keyword argument: e
* argument must be a sequence
** argument must be a dictionary
3 512 1
Lib/test/output/test_grammar
View file @
003663d7
...
...
@@ -42,29 +42,6 @@ additive ops
multiplicative ops
unary ops
selectors
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
atoms
classdef
Lib/test/test_extcall.py
View file @
003663d7
...
...
@@ -16,7 +16,7 @@ f(1, 2, 3)
f
(
1
,
2
,
3
,
*
(
4
,
5
))
f
(
1
,
2
,
3
,
*
[
4
,
5
])
f
(
1
,
2
,
3
,
*
UserList
([
4
,
5
])
f
(
1
,
2
,
3
,
*
UserList
([
4
,
5
])
)
f
(
1
,
2
,
3
,
**
{
'a'
:
4
,
'b'
:
5
})
f
(
1
,
2
,
3
,
*
(
4
,
5
),
**
{
'a'
:
6
,
'b'
:
7
})
f
(
1
,
2
,
3
,
x
=
4
,
y
=
5
,
*
(
6
,
7
),
**
{
'a'
:
8
,
'b'
:
9
})
...
...
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