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
84ee323c
Kaydet (Commit)
84ee323c
authored
May 23, 2002
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
John Aycock correctly pointed out that the grammar for
"power" was formally ambiguous. Here's his fix.
üst
c32f0336
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
Grammar
Grammar/Grammar
+1
-1
ACKS
Misc/ACKS
+1
-0
graminit.c
Python/graminit.c
+2
-3
No files found.
Grammar/Grammar
Dosyayı görüntüle @
84ee323c
...
...
@@ -79,7 +79,7 @@ shift_expr: arith_expr (('<<'|'>>') arith_expr)*
arith_expr: term (('+'|'-') term)*
term: factor (('*'|'/'|'%'|'//') factor)*
factor: ('+'|'-'|'~') factor | power
power: atom trailer*
('**' factor)*
power: atom trailer*
['**' factor]
atom: '(' [testlist] ')' | '[' [listmaker] ']' | '{' [dictmaker] '}' | '`' testlist '`' | NAME | NUMBER | STRING+
listmaker: test ( list_for | (',' test)* [','] )
lambdef: 'lambda' [varargslist] ':' test
...
...
Misc/ACKS
Dosyayı görüntüle @
84ee323c
...
...
@@ -20,6 +20,7 @@ Oliver Andrich
Ross Andrus
Jason Asbahr
David Ascher
John Aycock
Donovan Baarda
Alfonso Baciero
Stig Bakken
...
...
Python/graminit.c
Dosyayı görüntüle @
84ee323c
...
...
@@ -1005,15 +1005,14 @@ static arc arcs_48_1[3] = {
static
arc
arcs_48_2
[
1
]
=
{
{
119
,
3
},
};
static
arc
arcs_48_3
[
2
]
=
{
{
24
,
2
},
static
arc
arcs_48_3
[
1
]
=
{
{
0
,
3
},
};
static
state
states_48
[
4
]
=
{
{
1
,
arcs_48_0
},
{
3
,
arcs_48_1
},
{
1
,
arcs_48_2
},
{
2
,
arcs_48_3
},
{
1
,
arcs_48_3
},
};
static
arc
arcs_49_0
[
7
]
=
{
{
16
,
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