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
244ad3ca
Kaydet (Commit)
244ad3ca
authored
Eyl 09, 1999
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Name the parameter to expr() and suite() "source" instead of "string".
üst
7f2c9d38
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
libparser.tex
Doc/lib/libparser.tex
+6
-6
No files found.
Doc/lib/libparser.tex
Dosyayı görüntüle @
244ad3ca
...
...
@@ -110,17 +110,17 @@ AST objects may be created from source code or from a parse tree.
When creating an AST object from source, different functions are used
to create the
\code
{
'eval'
}
and
\code
{
'exec'
}
forms.
\begin{funcdesc}
{
expr
}{
s
tring
}
The
\function
{
expr()
}
function parses the parameter
\var
{
s
tring
}
as if it were an input to
\samp
{
compile(
\var
{
s
tring
}
, 'eval')
}
. If
\begin{funcdesc}
{
expr
}{
s
ource
}
The
\function
{
expr()
}
function parses the parameter
\var
{
s
ource
}
as if it were an input to
\samp
{
compile(
\var
{
s
ource
}
, 'eval')
}
. If
the parse succeeds, an AST object is created to hold the internal
parse tree representation, otherwise an appropriate exception is
thrown.
\end{funcdesc}
\begin{funcdesc}
{
suite
}{
s
tring
}
The
\function
{
suite()
}
function parses the parameter
\var
{
s
tring
}
as if it were an input to
\samp
{
compile(
\var
{
s
tring
}
, 'exec')
}
. If
\begin{funcdesc}
{
suite
}{
s
ource
}
The
\function
{
suite()
}
function parses the parameter
\var
{
s
ource
}
as if it were an input to
\samp
{
compile(
\var
{
s
ource
}
, 'exec')
}
. If
the parse succeeds, an AST object is created to hold the internal
parse tree representation, otherwise an appropriate exception is
thrown.
...
...
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