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
7c9a53df
Kaydet (Commit)
7c9a53df
authored
Ara 27, 2001
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Elaborate the descriptions for onecmd(), precmd(), and postcmd() so they are
useful.
üst
fd7f115a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
9 deletions
+20
-9
libcmd.tex
Doc/lib/libcmd.tex
+20
-9
No files found.
Doc/lib/libcmd.tex
Dosyayı görüntüle @
7c9a53df
...
...
@@ -22,7 +22,6 @@ The optional argument is the \refmodule{readline} name of a completion
key; it defaults to
\kbd
{
Tab
}
. If
\var
{
completekey
}
is not
\code
{
None
}
and
\module
{
readline
}
is available, command completion is done
automatically.
\end{classdesc}
\subsection
{
Cmd Objects
}
...
...
@@ -72,8 +71,11 @@ any undocumented commands.
\end{methoddesc}
\begin{methoddesc}
{
onecmd
}{
str
}
Interpret the argument as though it had been typed in in
response to the prompt.
Interpret the argument as though it had been typed in response to the
prompt. This may be overridden, but should not normally need to be;
see the
\method
{
precmd()
}
and
\method
{
postcmd()
}
methods for useful
execution hooks. The return value is a flag indicating whether
interpretation of commands by the interpreter should stop.
\end{methoddesc}
\begin{methoddesc}
{
emptyline
}{}
...
...
@@ -94,17 +96,26 @@ Method called to complete an input line when no command-specific
empty list.
\end{methoddesc}
\begin{methoddesc}
{
precmd
}{}
Hook method executed just before the command line
is interpreted, but
after the input prompt is generated and issued. This
\begin{methoddesc}
{
precmd
}{
line
}
Hook method executed just before the command line
\var
{
line
}
is
interpreted, but
after the input prompt is generated and issued. This
method is a stub in
\class
{
Cmd
}
; it exists to be overridden by
subclasses.
subclasses. The return value is used as the command which will be
executed by the
\method
{
onecmd()
}
method; the
\method
{
precmd()
}
implementation may re-write the command or simply return
\var
{
line
}
unchanged.
\end{methoddesc}
\begin{methoddesc}
{
postcmd
}{}
\begin{methoddesc}
{
postcmd
}{
stop, line
}
Hook method executed just after a command dispatch is finished. This
method is a stub in
\class
{
Cmd
}
; it exists to be overridden by
subclasses.
subclasses.
\var
{
line
}
is the command line which was executed, and
\var
{
stop
}
is a flag which indicates whether execution will be
terminated after the call to
\method
{
postcmd()
}
; this will be the
return value of the
\method
{
onecmd()
}
method. The return value of
this method will be used as the new value for the internal flag which
corresponds to
\var
{
stop
}
; returning false will cause interpretation
to continue.
\end{methoddesc}
\begin{methoddesc}
{
preloop
}{}
...
...
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