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: error in RawPen-class (line 262)
Type: Stage:
Components: Tkinter Versions: Python 2.2
process
Status: closed Resolution: duplicate
Dependencies: Superseder:
Assigned To: Nosy List: glingl, nnorwitz
Priority: normal Keywords: patch

Created on 2002-04-03 23:48 by glingl, last changed 2022-04-10 16:05 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
turtle.py glingl, 2002-04-03 23:48 Lib\lib-tk\turtle.py
Messages (2)
msg39456 - (view) Author: Gregor Lingl (glingl) (Python committer) Date: 2002-04-03 23:48
line 262 uses the global variable _canvas
instead of the instance-variable self._canvas
created in the RawPen - Constructor.

This certainly is a *very* old bug and it
seems strange, that it could remain undetected
that long.

for the patch look at lines 262 - 264
msg39457 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2002-04-04 00:15
Logged In: YES 
user_id=33168

This is a duplicate of #538991,
https://sourceforge.net/tracker/?group_id=5470&atid=105470&func=detail&aid=538991

The fix has been corrected on the main branch, 
but not in 2.2 branch yet.  I'm not sure the fix 
will go in 2.2.1.  It will be in 2.2.2.
History
Date User Action Args
2022-04-10 16:05:11adminsetgithub: 36375
2002-04-03 23:48:42glinglcreate