Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
2d735bc0
Kaydet (Commit)
2d735bc0
authored
Agu 19, 2008
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
allow keyword args after *args in a function call
üst
de0de885
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
30 additions
and
13 deletions
+30
-13
expressions.rst
Doc/reference/expressions.rst
+10
-9
Grammar
Grammar/Grammar
+3
-1
test_grammar.py
Lib/test/test_grammar.py
+8
-0
test_keywordonlyarg.py
Lib/test/test_keywordonlyarg.py
+1
-1
ast.c
Python/ast.c
+5
-0
graminit.c
Python/graminit.c
+3
-2
No files found.
Doc/reference/expressions.rst
Dosyayı görüntüle @
2d735bc0
...
...
@@ -612,11 +612,11 @@ of arguments:
call: `primary` "(" [`argument_list` [","]
: | `expression` `genexpr_for`] ")"
argument_list: `positional_arguments` ["," `keyword_arguments`]
:
["," "*" `expression
`]
: ["," "**" `expression`]
:
["," "*" `expression`] ["," `keyword_arguments
`]
:
["," "**" `expression`]
: | `keyword_arguments` ["," "*" `expression`]
: ["," "**" `expression`]
: | "*" `expression` ["," "**" `expression`]
:
["," `keyword_arguments`]
["," "**" `expression`]
: | "*" `expression` [","
`keyword_arguments`] [","
"**" `expression`]
: | "**" `expression`
positional_arguments: `expression` ("," `expression`)*
keyword_arguments: `keyword_item` ("," `keyword_item`)*
...
...
@@ -674,12 +674,13 @@ there were no excess keyword arguments.
If the syntax ``*expression`` appears in the function call, ``expression`` must
evaluate to a sequence. Elements from this sequence are treated as if they were
additional positional arguments; if there are positional arguments *x1*,...,*xN*
, and ``expression`` evaluates to a sequence *y1*,...,*yM*, this is equivalent
to a call with M+N positional arguments *x1*,...,*xN*,*y1*,...,*yM*.
additional positional arguments; if there are positional arguments *x1*,...,
*xN*, and ``expression`` evaluates to a sequence *y1*, ..., *yM*, this is
equivalent to a call with M+N positional arguments *x1*, ..., *xN*, *y1*, ...,
*yM*.
A consequence of this is that although the ``*expression`` syntax
appears
*after*
any
keyword arguments, it is processed *before* the keyword arguments
A consequence of this is that although the ``*expression`` syntax
may appear
*after*
some
keyword arguments, it is processed *before* the keyword arguments
(and the ``**expression`` argument, if any -- see below). So::
>>> def f(a, b):
...
...
Grammar/Grammar
Dosyayı görüntüle @
2d735bc0
...
...
@@ -113,7 +113,9 @@ dictorsetmaker: ( (test ':' test (comp_for | (',' test ':' test)* [','])) |
classdef: 'class' NAME ['(' [arglist] ')'] ':' suite
arglist: (argument ',')* (argument [',']| '*' test [',' '**' test] | '**' test)
arglist: (argument ',')* (argument [',']
|'*' test (',' argument)* [',' '**' test]
|'**' test)
argument: test [comp_for] | test '=' test # Really [keyword '='] test
comp_iter: comp_for | comp_if
...
...
Lib/test/test_grammar.py
Dosyayı görüntüle @
2d735bc0
...
...
@@ -284,6 +284,14 @@ class GrammarTests(unittest.TestCase):
pos2key2dict
(
1
,
2
,
k2
=
100
,
tokwarg1
=
100
,
tokwarg2
=
200
)
pos2key2dict
(
1
,
2
,
tokwarg1
=
100
,
tokwarg2
=
200
,
k2
=
100
)
# keyword arguments after *arglist
def
f
(
*
args
,
**
kwargs
):
return
args
,
kwargs
self
.
assertEquals
(
f
(
1
,
x
=
2
,
*
[
3
,
4
],
y
=
5
),
((
1
,
3
,
4
),
{
'x'
:
2
,
'y'
:
5
}))
self
.
assertRaises
(
SyntaxError
,
eval
,
"f(1, *(2,3), 4)"
)
self
.
assertRaises
(
SyntaxError
,
eval
,
"f(1, x=2, *(3,4), x=5)"
)
# argument annotation tests
def
f
(
x
)
->
list
:
pass
self
.
assertEquals
(
f
.
__annotations__
,
{
'return'
:
list
})
...
...
Lib/test/test_keywordonlyarg.py
Dosyayı görüntüle @
2d735bc0
...
...
@@ -75,7 +75,7 @@ class KeywordOnlyArgTestCase(unittest.TestCase):
def
testSyntaxErrorForFunctionCall
(
self
):
self
.
assertRaisesSyntaxError
(
"f(p, k=1, p2)"
)
self
.
assertRaisesSyntaxError
(
"f(p, *(1,2), k1=100)"
)
self
.
assertRaisesSyntaxError
(
"f(p,
k1=50,
*(1,2), k1=100)"
)
def
testRaiseErrorFuncallWithUnexpectedKeywordArgument
(
self
):
self
.
assertRaises
(
TypeError
,
keywordonly_sum
,
())
...
...
Python/ast.c
Dosyayı görüntüle @
2d735bc0
...
...
@@ -1961,6 +1961,11 @@ ast_for_call(struct compiling *c, const node *n, expr_ty func)
"non-keyword arg after keyword arg"
);
return
NULL
;
}
if
(
vararg
)
{
ast_error
(
CHILD
(
ch
,
0
),
"only named arguments may follow *expression"
);
return
NULL
;
}
e
=
ast_for_expr
(
c
,
CHILD
(
ch
,
0
));
if
(
!
e
)
return
NULL
;
...
...
Python/graminit.c
Dosyayı görüntüle @
2d735bc0
...
...
@@ -1598,7 +1598,8 @@ static arc arcs_73_5[2] = {
static
arc
arcs_73_6
[
1
]
=
{
{
0
,
6
},
};
static
arc
arcs_73_7
[
1
]
=
{
static
arc
arcs_73_7
[
2
]
=
{
{
161
,
5
},
{
32
,
3
},
};
static
state
states_73
[
8
]
=
{
...
...
@@ -1609,7 +1610,7 @@ static state states_73[8] = {
{
4
,
arcs_73_4
},
{
2
,
arcs_73_5
},
{
1
,
arcs_73_6
},
{
1
,
arcs_73_7
},
{
2
,
arcs_73_7
},
};
static
arc
arcs_74_0
[
1
]
=
{
{
24
,
1
},
...
...
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