[ python-Bugs-1593035 ] readline problem on ia64-unknown-linux-gnu
SourceForge.net
noreply at sourceforge.net
Tue Dec 19 15:51:31 CET 2006
Bugs item #1593035, was opened at 2006-11-08 18:48
Message generated for change (Comment added) made by akuchling
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1593035&group_id=5470
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Python Interpreter Core
Group: Python 2.5
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Kate Minola (kate01123)
Assigned to: Nobody/Anonymous (nobody)
Summary: readline problem on ia64-unknown-linux-gnu
Initial Comment:
On my ia64-unknown-linux-gnu machine, running
python-2.5, if I import the following code (foo.py) and
then try to do file name completion, I get a
segmentation fault. Specifically, if after importing
foo.py, if I type "im" and then [tab], I get a
segmentation fault.
I built python-2.5 from source using the default
values. (All I did was "configure", then "make".)
This does NOT happen under python-2.4.4.
----- foo.py ------
try:
import rlcompleter,readline
except ImportError:
print '*** No readline support ***'
pass
else:
readline.set_history_length(1000)
# parse and bind all these:
rlcmds = ['tab: complete',
r'"\M-p": history-search-backward',
r'"\M-n": history-search-forward',
r'"\C-p": history-search-backward',
r'"\C-n": history-search-forward',
r'"\e[A": history-search-backward',
r'"\e[B": history-search-forward',
'set show-all-if-ambiguous on',
]
map(readline.parse_and_bind,rlcmds)
-----------------------
%uname -a
Linux lepidus 2.4.21-sgi302r24 #1 SMP Fri Oct 22
22:43:12 PDT 2004 ia64 ia64 ia64 GNU/Linux
%
% ./python --version
Python 2.5
%
% ./python
Python 2.5 (r25:51908, Nov 8 2006, 15:40:13)
[GCC 4.1.1] on linux2
Type "help", "copyright", "credits" or "license" for
more information.
>>> import foo
>>> impSegmentation fault (core dumped)
%
% gdb ./python
GNU gdb Red Hat Linux (6.0post-0.20040223.20rh)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public
License, and you are
welcome to change it and/or distribute copies of it
under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show
warranty" for details.
This GDB was configured as
"ia64-redhat-linux-gnu"...Using host libthread_db library
"/lib/tls/libthread_db.so.1".
(gdb) r
Starting program: /home/kate/sage/william/Python-2.5/python
[Thread debugging using libthread_db enabled]
[New Thread 2305843009213881680 (LWP 23166)]
Python 2.5 (r25:51908, Nov 8 2006, 15:40:13)
[GCC 4.1.1] on linux2
Type "help", "copyright", "credits" or "license" for
more information.
>>> import foo
>>> im
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 2305843009213881680 (LWP 23166)]
0x200000000264ae90 in rl_complete_internal () from
/usr/lib/libreadline.so.4
(gdb) bt
#0 0x200000000264ae90 in rl_complete_internal () from
/usr/lib/libreadline.so.4
#1 0x2000000002646d90 in rl_complete () from
/usr/lib/libreadline.so.4
#2 0x200000000263bc40 in _rl_dispatch_subseq () from
/usr/lib/libreadline.so.4
#3 0x200000000263b780 in _rl_dispatch () from
/usr/lib/libreadline.so.4
#4 0x200000000263af90 in readline_internal_char ()
from /usr/lib/libreadline.so.4
#5 0x0000000000000000 in ?? ()
(gdb)
Kate Minola
University of Maryland, College Park
----------------------------------------------------------------------
>Comment By: A.M. Kuchling (akuchling)
Date: 2006-12-19 09:51
Message:
Logged In: YES
user_id=11375
Originator: NO
I wonder if this crash is related to the function pointer issue described
in
bug #1597798.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1593035&group_id=5470
More information about the Python-bugs-list
mailing list