[issue43531] Turtle module does not work

2021-03-17 Thread Adrian LeDeaux
Adrian LeDeaux added the comment: OK. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue43531] Turtle module does not work

2021-03-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: For next time, the turtle module is not part of IDLE. -- assignee: terry.reedy -> components: +Library (Lib) -IDLE ___ Python tracker ___ __

[issue43531] Turtle module does not work

2021-03-17 Thread Mark Dickinson
Change by Mark Dickinson : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python

[issue43531] Turtle module does not work

2021-03-17 Thread Adrian LeDeaux
Adrian LeDeaux added the comment: That fixed it. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue43531] Turtle module does not work

2021-03-17 Thread Adrian LeDeaux
Adrian LeDeaux added the comment: Oh, OK. I am not an expert on python so I did not understand the error. Thanks for the help, and I will update you if the problems continue. -- ___ Python tracker _

[issue43531] Turtle module does not work

2021-03-17 Thread Mark Dickinson
Mark Dickinson added the comment: You have a local file named `turtle.py`, which is conflicting with the standard library `turtle` module. Rename your local file to something else, then you'll be able to import the standard library `turtle` module. -- nosy: +mark.dickinson

[issue43531] Turtle module does not work

2021-03-17 Thread Adrian LeDeaux
New submission from Adrian LeDeaux : So when I try to do the command "import turtle" all I get back is: Traceback (most recent call last): File "", line 1, in import turtle File "/Users/Virsatech/Documents/turtle.py", line 2, in t = turtle.Pen() AttributeError: partially initiali