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
4ed6be71
Kaydet (Commit)
4ed6be71
authored
Ara 04, 2001
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Import the keyword module instead of relying on our own list of
reserved words. No longer need to import string.
üst
41c6719f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
11 deletions
+2
-11
reswords.py
Doc/ref/reswords.py
+2
-11
No files found.
Doc/ref/reswords.py
Dosyayı görüntüle @
4ed6be71
"""Spit out the Python reserved words table."""
"""Spit out the Python reserved words table."""
import
string
import
keyword
raw_words
=
"""
and del for is raise
assert elif from lambda return
break else global not try
class except if or while
continue exec import pass
def finally in print
"""
ncols
=
5
ncols
=
5
def
main
():
def
main
():
words
=
string
.
split
(
raw_words
)
words
=
keyword
.
kwlist
[:]
words
.
sort
()
words
.
sort
()
colwidth
=
1
+
max
(
map
(
len
,
words
))
colwidth
=
1
+
max
(
map
(
len
,
words
))
nwords
=
len
(
words
)
nwords
=
len
(
words
)
...
...
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