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
43211ecd
Kaydet (Commit)
43211ecd
authored
Tem 29, 2001
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make some adjustments to the markup, and fix up some style-guide issues.
üst
db642c66
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
17 deletions
+17
-17
libcmd.tex
Doc/lib/libcmd.tex
+17
-17
No files found.
Doc/lib/libcmd.tex
Dosyayı görüntüle @
43211ecd
...
@@ -19,9 +19,9 @@ interpreter class you define yourself in order to inherit
...
@@ -19,9 +19,9 @@ interpreter class you define yourself in order to inherit
\class
{
Cmd
}
's methods and encapsulate action methods.
\class
{
Cmd
}
's methods and encapsulate action methods.
The optional argument is the
\refmodule
{
readline
}
name of a completion
The optional argument is the
\refmodule
{
readline
}
name of a completion
key; it defaults to
\
code
{
``tab''
}
. If
\var
{
completekey
}
is not
key; it defaults to
\
kbd
{
Tab
}
. If
\var
{
completekey
}
is not
\code
{
None
}
\code
{
None
}
and
\module
{
readline
}
is available, command completion is
and
\module
{
readline
}
is available, command completion is done
done
automatically.
automatically.
\end{classdesc}
\end{classdesc}
...
@@ -51,20 +51,20 @@ and only if it has a method \method{do_foo()}. As a special case,
...
@@ -51,20 +51,20 @@ and only if it has a method \method{do_foo()}. As a special case,
a line beginning with the character
\character
{
?
}
is dispatched to
a line beginning with the character
\character
{
?
}
is dispatched to
the method
\method
{
do
_
help()
}
. As another special case, a line
the method
\method
{
do
_
help()
}
. As another special case, a line
beginning with the character
\character
{
!
}
is dispatched to the
beginning with the character
\character
{
!
}
is dispatched to the
method
\method
{
do
_
shell
}
(if such a method is defined).
method
\method
{
do
_
shell
()
}
(if such a method is defined).
If completion is enabled, completing commands will be done
If completion is enabled, completing commands will be done
automatically, and completing of commands args is done by calling
automatically, and completing of commands args is done by calling
\method
{
complete
_
foo()
}
with arguments
\
samp
{
text
}
,
\samp
{
line
}
,
\method
{
complete
_
foo()
}
with arguments
\
var
{
text
}
,
\var
{
line
}
,
\
samp
{
begidx
}
,
\samp
{
endidx
}
.
\samp
{
text
}
is string we are matching
\
var
{
begidx
}
, and
\var
{
endidx
}
.
\var
{
text
}
is the string prefix we
a
gainst, all returned matches must begin with it.
\samp
{
line
}
is the
a
re attempting to match: all returned matches must begin with it.
current input line (lstripped),
\samp
{
begidx
}
and
\samp
{
endidx
}
are
\var
{
line
}
is the current input line with leading whitespace removed,
the beginning and end indexes of the text being matched, which could
\var
{
begidx
}
and
\var
{
endidx
}
are the beginning and ending indexes
be used to provide different completion depending upon which position
of the prefix text, which could be used to provide different
the argument is in.
completion depending upon which position
the argument is in.
All subclasses of
\class
{
Cmd
}
inherit a predefined
\method
{
do
_
help
}
.
All subclasses of
\class
{
Cmd
}
inherit a predefined
\method
{
do
_
help
()
}
.
This method, called with an argument
\code
{
bar
}
, invokes the
This method, called with an argument
\code
{
'bar'
}
, invokes the
corresponding method
\method
{
help
_
bar()
}
. With no argument,
corresponding method
\method
{
help
_
bar()
}
. With no argument,
\method
{
do
_
help()
}
lists all available help topics (that is, all
\method
{
do
_
help()
}
lists all available help topics (that is, all
commands with corresponding
\method
{
help
_
*()
}
methods), and also lists
commands with corresponding
\method
{
help
_
*()
}
methods), and also lists
...
@@ -90,7 +90,7 @@ error message and returns.
...
@@ -90,7 +90,7 @@ error message and returns.
\begin{methoddesc}
{
completedefault
}{
text, line, begidx, endidx
}
\begin{methoddesc}
{
completedefault
}{
text, line, begidx, endidx
}
Method called to complete an input line when no command-specific
Method called to complete an input line when no command-specific
\
code
{
complete
_}
method is available.
By default, it returns an
\
method
{
complete
_
*()
}
method is available.
By default, it returns an
empty list.
empty list.
\end{methoddesc}
\end{methoddesc}
...
@@ -164,8 +164,8 @@ headers. If empty, no ruler line is drawn. It defaults to
...
@@ -164,8 +164,8 @@ headers. If empty, no ruler line is drawn. It defaults to
\begin{memberdesc}
{
use
_
rawinput
}
\begin{memberdesc}
{
use
_
rawinput
}
A flag, defaulting to true. If true,
\method
{
cmdloop()
}
uses
A flag, defaulting to true. If true,
\method
{
cmdloop()
}
uses
\function
{
raw
_
input()
}
to display a prompt and read the next command;
\function
{
raw
_
input()
}
to display a prompt and read the next command;
if false,
\
function
{
sys.stdout.write()
}
and
if false,
\
method
{
sys.stdout.write()
}
and
\
function
{
sys.stdin.readline()
}
are used. (This means that by
\
method
{
sys.stdin.readline()
}
are used. (This means that by
importing
\module
{
readline
}
, on systems that support it, the
importing
\module
{
readline
}
, on systems that support it, the
interpreter will automatically support Emacs-like line editing
interpreter will automatically support Emacs-like line editing
and command-history keystrokes.)
and command-history keystrokes.)
...
...
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