Mailing List Archive

[ python-Bugs-1771558 ] minor bug in turtle
Bugs item #1771558, was opened at 2007-08-10 11:30
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=1771558&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 Library
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Jeremy Sanders (jeremysanders)
Assigned to: Nobody/Anonymous (nobody)
Summary: minor bug in turtle

Initial Comment:
xpc17:~:$ python
Python 2.5 (r25:51908, Apr 10 2007, 10:27:40)
[GCC 4.1.2 20070403 (Red Hat 4.1.2-8)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import turtle
>>> turtle.demo2()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib64/python2.5/lib-tk/turtle.py", line 874, in demo2
sleep(2)
NameError: global name 'sleep' is not defined

Sleep needs to be imported from the time module before it is used.


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

You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1771558&group_id=5470
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/list-python-bugs%40lists.gossamer-threads.com
[ python-Bugs-1771558 ] minor bug in turtle [ In reply to ]
Bugs item #1771558, was opened at 2007-08-10 11:30
Message generated for change (Comment added) made by gbrandl
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1771558&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 Library
Group: None
>Status: Closed
>Resolution: Fixed
Priority: 5
Private: No
Submitted By: Jeremy Sanders (jeremysanders)
Assigned to: Nobody/Anonymous (nobody)
Summary: minor bug in turtle

Initial Comment:
xpc17:~:$ python
Python 2.5 (r25:51908, Apr 10 2007, 10:27:40)
[GCC 4.1.2 20070403 (Red Hat 4.1.2-8)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import turtle
>>> turtle.demo2()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib64/python2.5/lib-tk/turtle.py", line 874, in demo2
sleep(2)
NameError: global name 'sleep' is not defined

Sleep needs to be imported from the time module before it is used.


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

>Comment By: Georg Brandl (gbrandl)
Date: 2007-08-10 17:32

Message:
Logged In: YES
user_id=849994
Originator: NO

Fixed in rev. 56900.

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

You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1771558&group_id=5470
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/list-python-bugs%40lists.gossamer-threads.com