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
03a7466b
Kaydet (Commit)
03a7466b
authored
Nis 16, 1997
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
OK, ready to make 'assert' a keyword (instead of '__assert__').
üst
7aa9fc56
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Grammar
Grammar/Grammar
+1
-1
graminit.c
Python/graminit.c
+1
-1
No files found.
Grammar/Grammar
Dosyayı görüntüle @
03a7466b
...
@@ -49,7 +49,7 @@ global_stmt: 'global' NAME (',' NAME)*
...
@@ -49,7 +49,7 @@ global_stmt: 'global' NAME (',' NAME)*
## accesstype should be ('public' | 'protected' | 'private') ['read'] ['write']
## accesstype should be ('public' | 'protected' | 'private') ['read'] ['write']
## but can't be because that would create undesirable reserved words!
## but can't be because that would create undesirable reserved words!
exec_stmt: 'exec' expr ['in' test [',' test]]
exec_stmt: 'exec' expr ['in' test [',' test]]
assert_stmt: '
__assert__
' test [',' test]
assert_stmt: '
assert
' test [',' test]
compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | funcdef | classdef
compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | funcdef | classdef
if_stmt: 'if' test ':' suite ('elif' test ':' suite)* ['else' ':' suite]
if_stmt: 'if' test ':' suite ('elif' test ':' suite)* ['else' ':' suite]
...
...
Python/graminit.c
Dosyayı görüntüle @
03a7466b
...
@@ -1377,7 +1377,7 @@ static label labels[124] = {
...
@@ -1377,7 +1377,7 @@ static label labels[124] = {
{
1
,
"exec"
},
{
1
,
"exec"
},
{
293
,
0
},
{
293
,
0
},
{
1
,
"in"
},
{
1
,
"in"
},
{
1
,
"
__assert__
"
},
{
1
,
"
assert
"
},
{
282
,
0
},
{
282
,
0
},
{
283
,
0
},
{
283
,
0
},
{
284
,
0
},
{
284
,
0
},
...
...
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