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
93ea851e
Kaydet (Commit)
93ea851e
authored
May 13, 2011
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge two minor doc changes into default.
üst
91ba8669
51663750
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
re.rst
Doc/library/re.rst
+2
-1
sys.rst
Doc/library/sys.rst
+1
-1
No files found.
Doc/library/re.rst
Dosyayı görüntüle @
93ea851e
...
...
@@ -1325,9 +1325,10 @@ successive matches::
line_start = pos
line += 1
elif typ != 'SKIP':
val = mo.group(typ)
if typ == 'ID' and val in keywords:
typ = val
yield Token(typ,
mo.group(typ)
, line, mo.start()-line_start)
yield Token(typ,
val
, line, mo.start()-line_start)
pos = mo.end()
mo = gettok(s, pos)
if pos != len(s):
...
...
Doc/library/sys.rst
Dosyayı görüntüle @
93ea851e
...
...
@@ -805,7 +805,7 @@ always available.
Python.
The highest possible limit is platform-dependent. A user may need to set the
limit higher when
she has
a program that requires deep recursion and a platform
limit higher when
they have
a program that requires deep recursion and a platform
that supports a higher limit. This should be done with care, because a too-high
limit can lead to a crash.
...
...
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