Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
d1e22ba7
Commit
d1e22ba7
authored
Nov 26, 2014
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
only support append_history if readline has it
parent
810aa6db
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
56 additions
and
0 deletions
+56
-0
Lib/test/test_readline.py
Lib/test/test_readline.py
+2
-0
Modules/readline.c
Modules/readline.c
+4
-0
configure
configure
+43
-0
configure.ac
configure.ac
+4
-0
pyconfig.h.in
pyconfig.h.in
+3
-0
No files found.
Lib/test/test_readline.py
View file @
d1e22ba7
...
...
@@ -43,6 +43,8 @@ class TestHistoryManipulation (unittest.TestCase):
self
.
assertEqual
(
readline
.
get_current_history_length
(),
1
)
@
unittest
.
skipUnless
(
hasattr
(
readline
,
"append_history"
),
"append_history not available"
)
def
test_write_read_append
(
self
):
hfile
=
tempfile
.
NamedTemporaryFile
(
delete
=
False
)
hfile
.
close
()
...
...
Modules/readline.c
View file @
d1e22ba7
...
...
@@ -237,6 +237,7 @@ Save a readline history file.\n\
The default filename is ~/.history."
);
#ifdef HAVE_RL_APPEND_HISTORY
/* Exported function to save part of a readline history file */
static
PyObject
*
...
...
@@ -270,6 +271,7 @@ PyDoc_STRVAR(doc_append_history_file,
"append_history_file(nelements[, filename]) -> None
\n
\
Append the last nelements of the history list to file.
\n
\
The default filename is ~/.history."
);
#endif
/* Set history length */
...
...
@@ -782,7 +784,9 @@ static struct PyMethodDef readline_methods[] =
METH_VARARGS
,
doc_read_history_file
},
{
"write_history_file"
,
write_history_file
,
METH_VARARGS
,
doc_write_history_file
},
#ifdef HAVE_RL_APPEND_HISTORY
{
"append_history_file"
,
append_history_file
,
#endif
METH_VARARGS
,
doc_append_history_file
},
{
"get_history_item"
,
get_history_item
,
METH_VARARGS
,
doc_get_history_item
},
...
...
configure
View file @
d1e22ba7
...
...
@@ -14529,6 +14529,49 @@ rm -f conftest*
fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for append_history in -lreadline"
>
&5
$as_echo_n
"checking for append_history in -lreadline... "
>
&6
;
}
if
${
ac_cv_lib_readline_append_history
+
:
}
false
;
then
:
$as_echo_n
"(cached) "
>
&6
else
ac_check_lib_save_LIBS
=
$LIBS
LIBS
=
"-lreadline
$READLINE_LIBS
$LIBS
"
cat
confdefs.h -
<<
_ACEOF
>conftest.
$ac_ext
/* end confdefs.h. */
/* Override any GCC internal prototype to avoid an error.
Use char because int might match the return type of a GCC
builtin and then its argument prototype would still apply. */
#ifdef __cplusplus
extern "C"
#endif
char append_history ();
int
main ()
{
return append_history ();
;
return 0;
}
_ACEOF
if
ac_fn_c_try_link
"
$LINENO
"
;
then
:
ac_cv_lib_readline_append_history
=
yes
else
ac_cv_lib_readline_append_history
=
no
fi
rm
-f
core conftest.err conftest.
$ac_objext
\
conftest
$ac_exeext
conftest.
$ac_ext
LIBS
=
$ac_check_lib_save_LIBS
fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$ac_cv_lib_readline_append_history
"
>
&5
$as_echo
"
$ac_cv_lib_readline_append_history
"
>
&6
;
}
if
test
"x
$ac_cv_lib_readline_append_history
"
=
xyes
;
then
:
$as_echo
"#define HAVE_RL_APPEND_HISTORY 1"
>>
confdefs.h
fi
# End of readline checks: restore LIBS
LIBS
=
$LIBS_no_readline
...
...
configure.ac
View file @
d1e22ba7
...
...
@@ -4308,6 +4308,10 @@ then
[Define if you can turn off readline's signal handling.]), )
fi
AC_CHECK_LIB(readline, append_history,
AC_DEFINE(HAVE_RL_APPEND_HISTORY, 1,
[Define if readline supports append_history]), ,$READLINE_LIBS)
# End of readline checks: restore LIBS
LIBS=$LIBS_no_readline
...
...
pyconfig.h.in
View file @
d1e22ba7
...
...
@@ -690,6 +690,9 @@
/* Define to 1 if you have the `renameat' function. */
#undef HAVE_RENAMEAT
/* Define if readline supports append_history */
#undef HAVE_RL_APPEND_HISTORY
/* Define if you have readline 2.1 */
#undef HAVE_RL_CALLBACK
...
...
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