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

SourceForge.net noreply@sourceforge.net
Wed, 23 Jul 2003 15:28:56 -0700


Bugs item #775541, was opened at 2003-07-22 04:31
Message generated for change (Comment added) made by kbk
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: Accepted
Priority: 2
Submitted By: Gregor Lingl (glingl)
Assigned to: Kurt B. Kaiser (kbk)
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


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

>Comment By: Kurt B. Kaiser (kbk)
Date: 2003-07-23 17:28

Message:
Logged In: YES 
user_id=149084

Basic cause is fixed.  I had some comments on
his comments on turtle.py which I'm holding
off until I can get 2.3rc2 on XP.  Lowering priority.

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

Comment By: Kurt B. Kaiser (kbk)
Date: 2003-07-23 17:03

Message:
Logged In: YES 
user_id=149084

Basic cause is fixed.  I had some comments on
his comments on turtle.py which I'm holding
off until I can get 2.3rc2 on XP.  Lowering priority.

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

Comment By: Barry A. Warsaw (bwarsaw)
Date: 2003-07-23 16:43

Message:
Logged In: YES 
user_id=12800

Kurt, you applied the referenced patch, right?  So this bug
report can be closed, right?  If so, please do.

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

Comment By: Kurt B. Kaiser (kbk)
Date: 2003-07-23 00:04

Message:
Logged In: YES 
user_id=149084

functions/methods with no docstrings will raise
this error.

Patch 776062 submitted for 2.3rc2

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

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