This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: readline problem on ia64-unknown-linux-gnu
Type: Stage:
Components: Interpreter Core Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: akuchling, henry.precheur, kate01123, terry.reedy
Priority: normal Keywords:

Created on 2006-11-08 23:48 by kate01123, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg61032 - (view) Author: Kate Minola (kate01123) Date: 2006-11-08 23:48
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



msg61033 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2006-12-19 14:51
I wonder if this crash is related to the function pointer issue described in
bug #1597798.
msg73943 - (view) Author: Henry Precheur (henry.precheur) Date: 2008-09-27 22:11
This problem was probably solved in issue #1204.
msg107978 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2010-06-17 01:13
In the absence of a claim otherwise, I am assuming that this is now either fixed or out-of-date
History
Date User Action Args
2022-04-11 14:56:21adminsetgithub: 44212
2010-06-17 01:13:55terry.reedysetstatus: open -> closed

nosy: + terry.reedy
messages: + msg107978

resolution: fixed
2008-09-27 22:11:02henry.precheursetnosy: + henry.precheur
messages: + msg73943
2006-11-08 23:48:54kate01123create