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
e7a9796a
Kaydet (Commit)
e7a9796a
authored
Eyl 20, 2003
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #800697: Add readline.clear_history.
üst
c6bb6c0f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
0 deletions
+29
-0
libreadline.tex
Doc/lib/libreadline.tex
+6
-0
NEWS
Misc/NEWS
+2
-0
readline.c
Modules/readline.c
+21
-0
No files found.
Doc/lib/libreadline.tex
Dosyayı görüntüle @
e7a9796a
...
...
@@ -42,6 +42,12 @@ Save a readline history file.
The default filename is
\file
{
\~
{}
/.history
}
.
\end{funcdesc}
\begin{funcdesc}
{
clear
_
history
}{}
Clear the current history. (Note: this function is not available if
the installed version of GNU readline doesn't support it.)
\versionadded
{
2.4
}
\end{funcdesc}
\begin{funcdesc}
{
get
_
history
_
length
}{}
Return the desired length of the history file. Negative values imply
unlimited history file size.
...
...
Misc/NEWS
Dosyayı görüntüle @
e7a9796a
...
...
@@ -29,6 +29,8 @@ Core and builtins
Extension
modules
-----------------
-
readline
.
clear_history
was
added
.
-
select
.
select
()
now
accepts
sequences
for
its
first
three
arguments
.
-
cStringIO
now
supports
the
f
.
closed
attribute
.
...
...
Modules/readline.c
Dosyayı görüntüle @
e7a9796a
...
...
@@ -412,6 +412,24 @@ PyDoc_STRVAR(doc_get_line_buffer,
return the current contents of the line buffer."
);
#ifdef HAVE_RL_COMPLETION_APPEND_CHARACTER
/* Exported function to clear the current history */
static
PyObject
*
py_clear_history
(
PyObject
*
self
,
PyObject
*
noarg
)
{
clear_history
();
Py_INCREF
(
Py_None
);
return
Py_None
;
}
PyDoc_STRVAR
(
doc_clear_history
,
"clear_history() -> None
\n
\
Clear the current readline history."
);
#endif
/* Exported function to insert text into the line buffer */
static
PyObject
*
...
...
@@ -483,6 +501,9 @@ static struct PyMethodDef readline_methods[] =
#ifdef HAVE_RL_PRE_INPUT_HOOK
{
"set_pre_input_hook"
,
set_pre_input_hook
,
METH_VARARGS
,
doc_set_pre_input_hook
},
#endif
#ifdef HAVE_RL_COMPLETION_APPEND_CHARACTER
{
"clear_history"
,
py_clear_history
,
METH_NOARGS
,
doc_clear_history
},
#endif
{
0
,
0
}
};
...
...
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