[Python-bugs-list] [ python-Bugs-775541 ] idle.py doesn't accept ( in some cases

SourceForge.net noreply@sourceforge.net
Tue, 22 Jul 2003 02:31:43 -0700


Bugs item #775541, was opened at 2003-07-22 11:31
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=775541&group_id=5470

Category: IDLE
Group: Python 2.3
Status: Open
Resolution: None
Priority: 5
Submitted By: Gregor Lingl (glingl)
Assigned to: Nobody/Anonymous (nobody)
Summary: idle.py doesn't accept ( in some cases

Initial Comment:
I start IDLE in one-process-mode, in order to be able to 
use turtle.py in interactive mode.

i:\python23\python.exe idle.py -n

I enter in the shell-window:

Python 2.3c1 (#44, Jul 18 2003, 14:32:36) [MSC v.1200
32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more
information.
IDLE 1.0rc1      ==== No Subprocess ====
>>> from turtle import *
>>> Exception in Tkinter callback
Traceback (most recent call last):
  File "I:\Python23\lib\lib-tk\Tkinter.py", line 1345,
in __call__
    return self.func(*args)
  File "i:\python23\lib\idlelib\CallTips.py", line 47,
in paren_open_event
    arg_text = self.fetch_tip(name)
  File "i:\python23\lib\idlelib\CallTips.py", line 106,
in fetch_tip
    return get_arg_text(entity)
  File "i:\python23\lib\idlelib\CallTips.py", line 165,
in get_arg_text
    doc = getattr(ob, "__doc__", "").lstrip()
AttributeError: 'NoneType' object has no attribute 'lstrip'
forward(

Just after typing the opening parentheses after the 
function name forward the shown error-message appears,
and the just typed in forward( is appended to it.

When I continue e.g. with 50), the turtle does, what
I want. The same with all following function-calls.

Maybe the reason for this bug lies (in some way)
in turtle.py. Nevertheless, IMHO IDLE SHOULD accept 
modules like turtle.py withoult breaking

(I can't understand how getattr with 3. arg "" can
return NoneType at all. Or is this a bug in getattr?)

Interestingly IDLE started ordinarily in multiprocess
mode doesn't show this behaviour.

>>> from turtle import *
>>> forward(50

Alas! It's not recommended to complete this, as
then IDLE would hang from other reasons ...

Regards, Gregor


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=775541&group_id=5470