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
ebd662d6
Kaydet (Commit)
ebd662d6
authored
Haz 08, 2008
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#3028: tokenize passes the physical line.
üst
2fe3ef87
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
10 deletions
+9
-10
tokenize.rst
Doc/library/tokenize.rst
+9
-10
No files found.
Doc/library/tokenize.rst
Dosyayı görüntüle @
ebd662d6
...
@@ -15,21 +15,20 @@ for on-screen displays.
...
@@ -15,21 +15,20 @@ for on-screen displays.
The primary entry point is a :term:`generator`:
The primary entry point is a :term:`generator`:
.. function:: generate_tokens(readline)
.. function:: generate_tokens(readline)
The :func:`generate_tokens` generator requires one argument, *readline*,
which
The :func:`generate_tokens` generator requires one argument, *readline*,
must be a callable object which provides the same interface as the
which
must be a callable object which provides the same interface as the
:meth:`readline` method of built-in file objects (see section
:meth:`readline` method of built-in file objects (see section
:ref:`bltin-file-objects`). Each call to the function should return one line
of
:ref:`bltin-file-objects`). Each call to the function should return one line
input as a string.
of
input as a string.
The generator produces 5-tuples with these members: the token type; the token
The generator produces 5-tuples with these members: the token type; the token
string; a 2-tuple ``(srow, scol)`` of ints specifying the row and column
where
string; a 2-tuple ``(srow, scol)`` of ints specifying the row and column
the token begins in the source; a 2-tuple ``(erow, ecol)`` of ints specifying
where the token begins in the source; a 2-tuple ``(erow, ecol)`` of ints
the row and column where the token ends in the source; and the line on which
the
specifying the row and column where the token ends in the source; and
the
token was found. The line passed is the *logical* line; continuation lines are
line on which the token was found. The line passed is the *physical* line,
included
.
that is, continuation lines are not handled specially
.
.. versionadded:: 2.2
.. versionadded:: 2.2
...
...
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