[issue7124] idle.py -n : help() doesn't work in a reopened shell window

2011-03-29 Thread Gregor Lingl
Gregor Lingl gregorli...@users.sourceforge.net added the comment: Right. I cannot replicate this bug even with an IDLE from Python 3.2. So it seems to me, that this problem has been solved. Regards, Gregor -- ___ Python tracker rep

[issue7061] Improve 24.5. turtle doc

2010-11-05 Thread Gregor Lingl
Gregor Lingl gregorli...@users.sourceforge.net added the comment: What do you mean with similar approach? Keep in mind, that functions derived form turtle methods, call methods for the class variable _pen of class Turtle. A new Turtle-object is bound to _pen, if it is not already present

[issue10199] Move Demo/turtle under Lib/

2010-10-27 Thread Gregor Lingl
Gregor Lingl gregorli...@users.sourceforge.net added the comment: Imho it is very important to clarify the name convention for demoscripts to be added to the demo before committing (or at least before the apperance of beta1). It decides about adding scripts to the Examples Menu of the viewer

[issue10199] Move Demo/turtle under Lib/

2010-10-26 Thread Gregor Lingl
Gregor Lingl gregorli...@users.sourceforge.net added the comment: First of all: I'd not like to see turtle.py converted into a package. I think with the turtle module things should be as simple as possible and I don't see any need to put approx. 100kB of code into an __init__.py and be it only

[issue8616] Changes to content of Demo/turtle

2010-05-25 Thread Gregor Lingl
Gregor Lingl gregorli...@users.sourceforge.net added the comment: Yes, tdemo_raund_dance.py and tdemo_scribble.py definitely do not work with turtle.py from Python 2.7 :-( I submitted them expecting, that my backport of turtle.py from Python 3.1 to Python 2.7 would be accepted. But, alas, I

[issue8615] turtle.py - backport of 3.1 features

2010-05-04 Thread Gregor Lingl
Gregor Lingl gregorli...@users.sourceforge.net added the comment: Here, just for your information, the appropriate unified diff (from the version in 2.7b1 to the new submitted one. -- keywords: +patch Added file: http://bugs.python.org/file17207/turtle27b1_to_turtle27.diff

[issue8616] Changes to content of Demo/turtle

2010-05-04 Thread Gregor Lingl
New submission from Gregor Lingl gregorli...@users.sourceforge.net: turtleDemo.py contains a string referring to the outdated xturtle. Should be replaced according to the submitted diff. Moreover I'd like to propose to add to demo-scripts to the Demo-directory, namely tdemo_nim.py

[issue8616] Changes to content of Demo/turtle

2010-05-04 Thread Gregor Lingl
Changes by Gregor Lingl gregorli...@users.sourceforge.net: Added file: http://bugs.python.org/file17209/tdemo_nim.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8616

[issue8616] Changes to content of Demo/turtle

2010-05-04 Thread Gregor Lingl
Changes by Gregor Lingl gregorli...@users.sourceforge.net: Added file: http://bugs.python.org/file17210/tdemo_round_dance.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8616

[issue8616] Changes to content of Demo/turtle

2010-05-04 Thread Gregor Lingl
Changes by Gregor Lingl gregorli...@users.sourceforge.net: Added file: http://bugs.python.org/file17211/tdemo_scribble.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8616

[issue8615] turtle.py - backport of 3.1 features

2010-05-04 Thread Gregor Lingl
Gregor Lingl gregorli...@users.sourceforge.net added the comment: As far as I remember, in the past there was a feature - freeze only with the appearance of beta2? Maybe I'm wrong. So there remains only to try to interpret the term new feature appropriately, as all those features are already

[issue8615] turtle.py - backport of 3.1 features

2010-05-04 Thread Gregor Lingl
Gregor Lingl gregorli...@users.sourceforge.net added the comment: I see, that Benjamin Peterson, the release manager, is on the nosy list now. So please decide on this issue. If you need any supplementary information, I'll try to provide it. (The issue concerning the adoption of this version

[issue6717] Some problem with recursion handling

2009-10-16 Thread Gregor Lingl
Gregor Lingl gregorli...@users.sourceforge.net added the comment: I've written and appended with this message a small script using tkinter, that produces the same crash as described earlier with turtle.py: tkinter_recursion_31.py It occurs when heavily and fast dragging the red square. So

[issue7124] idle.py -n : help() doesn't work in a reopened shell window

2009-10-14 Thread Gregor Lingl
New submission from Gregor Lingl gregorli...@users.sourceforge.net: The following procedure reveals a problem with help: 1) Start IDLE with -n option (no subprocess) 2) Create a script (e. g. helloworld one-liner 3) Run script 4) Close Shell Window 5) Via Menu: Run | Python Shell reopen Shell

[issue7129] 'filling' missing in __all__

2009-10-14 Thread Gregor Lingl
New submission from Gregor Lingl gregorli...@users.sourceforge.net: By oversight the turtle graphics function filling is missing in the __all__ list which is composed by several parts, among them _tg_turtle_functions. So 'filling' has to be added to _tg_turtle_functions a path is attached

[issue7129] 'filling' missing in __all__ ot turtle.py

2009-10-14 Thread Gregor Lingl
Changes by Gregor Lingl gregorli...@users.sourceforge.net: -- title: 'filling' missing in __all__ - 'filling' missing in __all__ ot turtle.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7129

[issue7052] from logging import * causes an error under Ubuntu Karmic

2009-10-04 Thread Gregor Lingl
Gregor Lingl gregorli...@users.sourceforge.net added the comment: The same True for captureWarnings? (It's also is only present in __all__) -- nosy: +gregorlingl ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7052

[issue7052] from logging import * causes an error under Ubuntu Karmic

2009-10-04 Thread Gregor Lingl
Gregor Lingl gregorli...@users.sourceforge.net added the comment: As stated above: the name captureWarnings is also present *only* in __all__. Same reason, same effect. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7052

[issue7061] Improve 24.5. turtle doc

2009-10-04 Thread Gregor Lingl
Gregor Lingl gregorli...@users.sourceforge.net added the comment: Thanks, Terry, for reading the docs that thoroughly. Alas, for the next week I'm too busy (with preparing Python für Kids for press) to work through this long list. Since it doesn't seem to be *very* urgent, I'll defer that work

[issue6717] Some problem with recursion handling

2009-08-17 Thread Gregor Lingl
New submission from Gregor Lingl gregorli...@users.sourceforge.net: I suspect that there is some deeper (more severe) issue behind the problem I describe below. I've observed the following on Windows only. Didn't try it with different OSs running dragbug.py shows different behaviour with Python

[issue6618] Typo in a listing in 5.2.9 of language reference

2009-08-01 Thread Gregor Lingl
New submission from Gregor Lingl gregorli...@users.sourceforge.net: Error in: Python v3.1 documentation The Python language reference In the listing at the end of section 5.2.9 Yield expressions, line 7: ... except Exception, e: is syntactically incorrect and consequently

[issue6340] replace tdemo_chaos.py

2009-06-25 Thread Gregor Lingl
Gregor Lingl gregorli...@users.sourceforge.net added the comment: So do I. I'd like to ask you to do the commit. And I'd also like to suggest that - in the first three comment-lines of the script - you replace Datei:by File: Autor:by Author: Datum: 24

[issue6339] Some functional errors in turtle.py documentation (missing links)

2009-06-24 Thread Gregor Lingl
New submission from Gregor Lingl gregorli...@users.sourceforge.net: In the Python3.1rc2 documentation for turtle.py there are the following functional errors: In the overview section the (newly added) entries for the functions/methods shearfactor get_shapepoly onkeypress numinput do not have

[issue6340] replace tdemo_chaos.py

2009-06-24 Thread Gregor Lingl
New submission from Gregor Lingl gregorli...@users.sourceforge.net: I've submitted a replacement, which is functionally 100% equivalent, but cleaner code, more appropriate for a demo: four or five superfluous lines, which were remains from some previous version are deleted now; names

[issue6340] replace tdemo_chaos.py

2009-06-24 Thread Gregor Lingl
Changes by Gregor Lingl gregorli...@users.sourceforge.net: Removed file: http://bugs.python.org/file14358/tdemo_chaos.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6340

[issue6340] replace tdemo_chaos.py

2009-06-24 Thread Gregor Lingl
Changes by Gregor Lingl gregorli...@users.sourceforge.net: Added file: http://bugs.python.org/file14359/tdemo_chaos.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6340

[issue6340] replace tdemo_chaos.py

2009-06-24 Thread Gregor Lingl
Changes by Gregor Lingl gregorli...@users.sourceforge.net: Removed file: http://bugs.python.org/file14359/tdemo_chaos.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6340

[issue6340] replace tdemo_chaos.py

2009-06-24 Thread Gregor Lingl
Changes by Gregor Lingl gregorli...@users.sourceforge.net: Added file: http://bugs.python.org/file14360/tdemo_chaos.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6340

[issue5923] turtle.py update: 1.0 -- 1.1

2009-05-04 Thread Gregor Lingl
New submission from Gregor Lingl gregorli...@users.sourceforge.net: I propose to update turtle.py with this new version 1.1 of the turtle module. Summary of changes: 1. a few bugfixes, with 1 - 5 lines of code changed for each; these concern bugs that prevented turtle to run correctly 2

[issue5923] turtle.py update: 1.0 -- 1.1

2009-05-04 Thread Gregor Lingl
Gregor Lingl gregorli...@users.sourceforge.net added the comment: Just to see what I've changed: The unified diff from version 1.0 ( Revision 69847 ) to the proposed version 1.1b (Should result in version 1.1 'final'ly) -- keywords: +patch Added file: http://bugs.python.org/file13871

[issue5923] turtle.py update: 1.0 -- 1.1

2009-05-04 Thread Gregor Lingl
Gregor Lingl gregorli...@users.sourceforge.net added the comment: I just wanted to submit the reply below. In the meantime Benjamin's remark arrived. So perhaps the issue can be resolved successfully. May I submit here one of the two example scripts I'd like to add to the demos

[issue5923] turtle.py update: 1.0 -- 1.1

2009-05-04 Thread Gregor Lingl
Gregor Lingl gregorli...@users.sourceforge.net added the comment: Here the patch to comment out the print(_ver) statement -- Added file: http://bugs.python.org/file13880/print_ver_patch.diff ___ Python tracker rep...@bugs.python.org http

[issue5923] turtle.py update: 1.0 -- 1.1

2009-05-04 Thread Gregor Lingl
Gregor Lingl gregorli...@users.sourceforge.net added the comment: Here is a patch for the documentation. It may contain some typos and/or inaccuracies. I promise to check it and submit a patch if necessary before final. It contains also the announcement of two new demo scripts, the one beeing

[issue5923] turtle.py update: 1.0 -- 1.1

2009-05-04 Thread Gregor Lingl
Gregor Lingl gregorli...@users.sourceforge.net added the comment: The second demo script just announced -- Added file: http://bugs.python.org/file13886/tdemo_nim.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5923

[issue4117] missing update() in _Screen.setup() of Lib/turtle.py

2008-11-20 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: Here the patch, updated Added file: http://bugs.python.org/file12080/setup_patch.diff ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4117

[issue4117] missing update() in _Screen.setup() of Lib/turtle.py

2008-11-20 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: Sorry, but there is a remain from testing different versions of the turtle module in the demo file's import statement. Should read (of course): from turtle import Screen, Turtle, mainloop A corrected version is attached Sorry, again

[issue4117] missing update() in _Screen.setup() of Lib/turtle.py

2008-11-19 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: I cannot call the Canvas method _update_idletasks() from within _Screen.setup() becaus this would contradict to the architecture of the module which isolates all direct references to Tkinter to TurtleScreenBase. (The idea behind this is to make

[issue4117] missing update() in _Screen.setup() of Lib/turtle.py

2008-11-19 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: I find that desire misguided; this is (IMO) a case of false abstraction. Is there any kind of proof that this design actually works, i.e. can be ported to a different GUI library (like, say, PythonWin? or AWT, when run in Jython?) Yes

[issue4117] missing update() in _Screen.setup() of Lib/turtle.py

2008-11-19 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: Most definitely. The module went into Python without any review whatsoever. Nobody (but you) has ever looked at the code in detail. That's not True! Brad Miller, for example, who also had submitted patches to the pythontracker, coauthor

[issue4116] name conflict in ScrolledCanvas.__init__() in Lib/turtle.py

2008-11-18 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: I'd like to see this patch accepted and done for Python 2.6.1 and (at the same time) python 3.0 before the last rc is released. So could you dedicate a few minutes to reviewing it. To demonstrate the nature of this issue (and also the nuisance

[issue4117] missing update() in _Screen.setup() of Lib/turtle.py

2008-11-18 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: I'd also like to see this patch accepted and done for Python 2.6.1 and (at the same time) python 3.0 before the last rc is released. So perhaps you could you dedicate a few minutes to this one also. Thanks for your efforts, Gregor

[issue4116] name conflict in ScrolledCanvas.__init__() in Lib/turtle.py

2008-10-13 Thread Gregor Lingl
New submission from Gregor Lingl [EMAIL PROTECTED]: In ScrolledCanvas.__init__() there's a name conflict with a methodname of the parentclass Frame: _root. The bugfix consists in renaming this attribute, which occurs only twice. No change in behaviour at all. Regards, Gregor

[issue4117] missing update() in _Screen.setup() of Lib/turtle.py

2008-10-13 Thread Gregor Lingl
New submission from Gregor Lingl [EMAIL PROTECTED]: In Lib/turtle.py _Screen.setup() needs a final update() call in order to ensure, that immediately following calls of window_width() or window_height() return correct values. Consequently the setup() method call in _Screen.__init__() has

[issue4116] name conflict in ScrolledCanvas.__init__() in Lib/turtle.py

2008-10-13 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: This patch applies to Python 2.6 as well Gregor -- versions: +Python 2.6 ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4116

[issue4117] missing update() in _Screen.setup() of Lib/turtle.py

2008-10-13 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: This patch applies to Python 2.6 as well Gregor -- versions: +Python 2.6 ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4117

[issue3956] turtle.py - bug in Screen.__init__()

2008-09-29 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: Agreeing to this patch, I'd just like to mention, that nevertheless this change is not very pleasing for me. Not feeling that singleton with inheritance is a 'meaningless' but rather a 'very special' concept,the meaning of which could

[issue3956] turtle.py - bug in Screen.__init__()

2008-09-29 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: ... I meant: the right place for a further discussion Sorry, Gregor ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3956

[issue3941] Help in IDLE should open the chm file

2008-09-28 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: I just found out, that this doesn't work correctly, because the Windows-helpfile in Python26rc2 is strangely named Python26c2.chm . It works correctly however if one renames this file to Python26.chm (as this is what the code in EditorWindow.py

[issue3956] turtle.py - bug in Screen.__init__()

2008-09-28 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: I agree to Martin's patch for 2.6, because it seems to provide a more clean solution. And, as he states, there will be time and opportunity to discuss it more thoroughly later to possibly find another approach. As I remarked before I know

[issue3956] turtle.py - bug in Screen.__init__()

2008-09-25 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: First of all I'd like to point you at a posting which I posted to Python-dev on August 18th, where I addressed this issue in full detail. http://mail.python.org/pipermail/python-dev/2008-August/081846.html I hoped to provoke a clarifying

[issue3968] fill() and end_fill() do not work correctly

2008-09-25 Thread Gregor Lingl
New submission from Gregor Lingl [EMAIL PROTECTED]: fill() and end_fill() do not work as expected. As a user on the tutor list wrote: For a while now I've had trouble with end_fill(). Sometimes I can use it to fill a figure such as a square, triangle or rectangle, but sometimes

[issue3969] turtle.py - setup() doesn't work correctly

2008-09-25 Thread Gregor Lingl
New submission from Gregor Lingl [EMAIL PROTECTED]: setup() doesn't work correctly: startx argument is not recognized This is due to a typo in the setup() function A patch is attached. Regards, Gregor -- components: Tkinter files: 2.5turtle_setup_patch.diff keywords: patch messages

[issue3968] turtle.py: fill() and end_fill() do not work correctly

2008-09-25 Thread Gregor Lingl
Changes by Gregor Lingl [EMAIL PROTECTED]: -- title: fill() and end_fill() do not work correctly - turtle.py: fill() and end_fill() do not work correctly ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3968

[issue3956] turtle.py - bug in Screen.__init__()

2008-09-24 Thread Gregor Lingl
New submission from Gregor Lingl [EMAIL PROTECTED]: There is a bug in Screen.__init__() (The Screen class uses the Borg idiom to simulate a Singleton). This bug is demonstrated best interactively from IDLE (using the -n switch) like this: from turtle import Screen, Turtle t = Turtle() t.fd

[issue3956] turtle.py - bug in Screen.__init__()

2008-09-24 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: Do the patch of turtleDemo.py if and only if the patch of turtle.py is accepted. Added file: http://bugs.python.org/file11592/turtleDemo.diff ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org

[issue3950] turtle.py: bug in TurtleScreenBase._drawimage

2008-09-23 Thread Gregor Lingl
New submission from Gregor Lingl [EMAIL PROTECTED]: In the first line of TurtleScreenBase._drawimage() there are to scalefactors missing. This leads to the annoying fact, that the drawings and the movement of a turtle which has an image shape differ. This is shown in the short script

[issue3950] turtle.py: bug in TurtleScreenBase._drawimage

2008-09-23 Thread Gregor Lingl
Changes by Gregor Lingl [EMAIL PROTECTED]: -- type: - behavior versions: +Python 2.6 Added file: http://bugs.python.org/file11579/_drawimage_bug_fix_test.py ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3950

[issue3950] turtle.py: bug in TurtleScreenBase._drawimage

2008-09-23 Thread Gregor Lingl
Changes by Gregor Lingl [EMAIL PROTECTED]: Added file: http://bugs.python.org/file11580/huhn.gif ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3950

[issue3940] turtle.py - minor bugfixes

2008-09-22 Thread Gregor Lingl
New submission from Gregor Lingl [EMAIL PROTECTED]: Thorough testing revealesd the following bugs in turtle.py (Python 2.6): 1) Around lines 359 and 379: There's a name conflict with a methodname of the parentclass Frame: _root. The bugfix consists in renaming this attribute, which occurs only

[issue3940] turtle.py - minor bugfixes

2008-09-22 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: The bugfix for bug 3) described above makes necessary the insertion of a line in turtleDemo.py (around line 96) Again I've attached the corresponding diff file Added file: http://bugs.python.org/file11566/turtleDemo.diff

[issue3941] Help in IDLE doesn't work correctly

2008-09-22 Thread Gregor Lingl
New submission from Gregor Lingl [EMAIL PROTECTED]: From IDLE either pressing F1 or choosing the menu Help-Python Docs should open a Help-Window with the docs of the current version. (This works well for instance in Python 2.5.2) The docs file normally resides on the local computer in the Doc

[issue3884] turtle in the tkinter package?

2008-09-21 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: Of course I highly appreciate this decision. I'd like to point you to an urgent issue concerning turtle.py which needs a decision and which I've just posted to Python-dev Regards, Gregor ___ Python tracker

[issue3064] new turtle module for Python 3.0

2008-06-09 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: Here is the (slightly) modified docfile in rst-format for the new turtle module for Python 3.0 I'll submit the diff (from the turtle.rst for Python 2.6) in a follow up posting for your convenience. So you can easily check the few differences

[issue3064] new turtle module for Python 3.0

2008-06-09 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: And here the diff from docfile turtle.rst to what I have named turtle30.rst for now. Gregor -- keywords: +patch Added file: http://bugs.python.org/file10564/turtle.rst.diff ___ Python tracker [EMAIL

[issue3064] new turtle module for Python 3.0

2008-06-08 Thread Gregor Lingl
New submission from Gregor Lingl [EMAIL PROTECTED]: turtle3.zip contains the port of the new turtle module (including demo viewer and demo scripts) to Python 3.0 . One demo script has been added (tdemo_forest.py) It has been tested under Windows/MacOsX/Linux without showing up any problems

[issue1513695] new turtle module

2008-06-02 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: I'd like to propose a few modifications of turtle.py for the transition from Python 2.6 to Python 3.0, which would result in a cleaner interface but also in some - i think marginal - incompatibiliy: 1) drop from math import * 2) delete

[issue1513695] new turtle module

2008-06-02 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: In my last posting i forgot a fourth proposition. Currently one has the Turtle.methods fill(), begin_fill() and end_fill() As is stated in the old turtle docs the specification of fill is rather complex. begin_fill() and end_fill

[issue1513695] new turtle module

2008-06-01 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: Hi, here is my contribution. The zip-file contains - the module turtle.py - a doc-file turtle-docs.txt - a subdirectory with a series of sample scripts and a demoviewer. (one of the demoscripts is a standalone script) Clearly the docs have

[issue1513695] new turtle module

2008-03-17 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: This version runs under Python 2.5 and should run under python 2.6 It still needs some amendments and polishing concerning the code as well as the docstrings. Here it can serve as a starting point for a discussion about necessary and/or desirable

[issue1513695] new turtle module

2008-03-17 Thread Gregor Lingl
Changes by Gregor Lingl [EMAIL PROTECTED]: Added file: http://bugs.python.org/file9694/xturtle-docs.txt _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1513695

[issue1513695] new turtle module

2008-03-17 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: If you put (this example of) xturtle.cfg either into the directory where xturtle.py resides or into the current working directory, the configuration will be loaded. In this case window size and turtle are configured to look like in module turtle

[issue1513695] new turtle module

2008-03-17 Thread Gregor Lingl
Changes by Gregor Lingl [EMAIL PROTECTED]: Added file: http://bugs.python.org/file9715/whatsnew.txt _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1513695 _ ___ Python

[issue1513695] new turtle module

2008-03-17 Thread Gregor Lingl
Gregor Lingl [EMAIL PROTECTED] added the comment: Supplementary remark: xturtle has proved to run without problems under Python 2.6. (Not surprisingly) it's behaviour is exactly like under Python 2.5, with the exception, that the tested scripts run 5 to 15% faster