[issue17413] format_exception() breaks on exception tuples from trace function

2013-04-13 Thread ingrid
ingrid added the comment: It seems that settrace works normally when an exception is raised in the python code with the raise keyword. If an exception is raised in the C code, settrace breaks as the C code passes all exceptions as strings. To fix this issue we just added a line to normalize

[issue17413] format_exception() breaks on exception tuples from trace function

2013-04-13 Thread ingrid
Changes by ingrid h...@ingridcheung.com: -- nosy: +bmac ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17413 ___ ___ Python-bugs-list mailing list

[issue17413] format_exception() breaks on exception tuples from trace function

2013-04-18 Thread ingrid
ingrid added the comment: Thank you, r.david.murray. I have updated the patch with your suggestions included. -- Added file: http://bugs.python.org/file29917/issue17413.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org

[issue20900] distutils register command should print text, not bytes repr

2014-03-12 Thread ingrid
ingrid added the comment: I haven't had to register a python package before. Is there a way to reproduce this without actually creating an entry in PyPI? -- nosy: +ingrid ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20900

[issue20900] distutils register command should print text, not bytes repr

2014-03-12 Thread ingrid
ingrid added the comment: Ah, thanks! I'm looking at this now. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20900 ___ ___ Python-bugs-list

[issue20900] distutils register command should print text, not bytes repr

2014-03-15 Thread ingrid
ingrid added the comment: Here is a patch. I made the register show-response format consistent with the upload show-response format and added tests for both. Please let me know if you have any feedback. -- keywords: +patch Added file: http://bugs.python.org/file34436/issue20900.patch

[issue20900] distutils register command should print text, not bytes repr

2014-03-19 Thread ingrid
ingrid added the comment: I'm not quite clear on what you mean, could you please post an example output? Initially the response was not showing up at all for me because the announce call in register was missing a log level, but when I used log.INFO, the response did print for me, and it did

[issue16428] turtle with compound shape doesn't get clicks

2014-05-23 Thread ingrid
ingrid added the comment: I tried the same script in Python 2.7 and Python 3.4.1 on OSX and had the same results. -- nosy: +ingrid ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16428

[issue16428] turtle with compound shape doesn't get clicks

2014-06-02 Thread ingrid
ingrid added the comment: Looks like the issue is that when you are registering mouse events through turtle, it uses Shape._item. For polygon shapes, that's the actual shape item, but for compound shapes, it is an array of shape items. I have attached a patch that makes it so when

[issue21646] Add tests for turtle.ScrolledCanvas

2014-06-02 Thread ingrid
Changes by ingrid h...@ingridcheung.com: -- components: Tests nosy: ingrid, jesstess priority: normal severity: normal status: open title: Add tests for turtle.ScrolledCanvas versions: Python 3.5 ___ Python tracker rep...@bugs.python.org http

[issue16428] turtle with compound shape doesn't get clicks

2014-06-11 Thread ingrid
ingrid added the comment: I updated the patch to use the gui check in Lib/test/support, and I renamed the test file to be test_turtle_guionly. -- Added file: http://bugs.python.org/file35585/issue_16428.patch ___ Python tracker rep

[issue21646] Add tests for turtle.ScrolledCanvas

2014-06-11 Thread ingrid
New submission from ingrid: First pass at some tests -- keywords: +patch Added file: http://bugs.python.org/file35586/issue_21646.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21646

[issue21754] Add tests for turtle.TurtleScreenBase

2014-06-14 Thread ingrid
Changes by ingrid h...@ingridcheung.com: -- components: Tests files: TurtleScreenBase_tests.patch keywords: patch nosy: ingrid, jesstess priority: normal severity: normal status: open title: Add tests for turtle.TurtleScreenBase type: enhancement versions: Python 3.5 Added file: http

[issue21806] Add tests for turtle.TPen class

2014-06-19 Thread ingrid
Changes by ingrid h...@ingridcheung.com: -- components: Tests files: TPen_tests.patch keywords: patch nosy: ingrid, jesstess priority: normal severity: normal status: open title: Add tests for turtle.TPen class versions: Python 3.5 Added file: http://bugs.python.org/file35688

[issue21916] Create unit tests for turtle textonly

2014-07-04 Thread ingrid
New submission from ingrid: Non-gui tests for turtle that Lita and I wrote. -- components: Tests files: test_turtle_textonly.patch keywords: patch messages: 82 nosy: ingrid, jesstess priority: normal severity: normal status: open title: Create unit tests for turtle textonly versions

[issue21806] Add tests for turtle.TPen class

2014-07-07 Thread ingrid
New submission from ingrid: Duplicate of http://bugs.python.org/issue21916 -- resolution: - duplicate status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21806

[issue21754] Add tests for turtle.TurtleScreenBase

2014-07-07 Thread ingrid
New submission from ingrid: Duplicate of http://bugs.python.org/issue21914 -- resolution: - duplicate status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21754

[issue21646] Add tests for turtle.ScrolledCanvas

2014-07-07 Thread ingrid
ingrid added the comment: Duplicate of http://bugs.python.org/issue21914 -- resolution: - duplicate status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21646

[issue21941] Clean up turtle TPen class

2014-07-08 Thread ingrid
New submission from ingrid: There are a lot of methods in the TPen class that are defined but not used because all the child classes overwrite almost all the functions and TPen itself isn't used directly a whole lot. This patch removes the unused code so it's less confusing to read turtle.py

[issue20265] Bring Windows docs up to date

2014-07-10 Thread ingrid
ingrid added the comment: Hi Kathleen, I was just curious why you dropped the changes from Doc/using/windows.rst on your latest patch as they looked useful to me. I know there's some review going on outside this thread, so apologies if I'm missing something you already went over

[issue21941] Clean up turtle TPen class

2014-07-16 Thread ingrid
ingrid added the comment: Ah, I think I was mistaken about some things when I made the first patch but it looks like TPen have a few methods that don't work as you'd expect. Since _colorstr isn't implemented on TPen fillcolor and pencolor pen don't work as intended when you call them directly

[issue21973] Idle should not quit on corrupted user config files

2014-08-04 Thread ingrid
ingrid added the comment: Here is a patch that will print a warning if there is an invalid config when starting idle. Example: Warning (from warnings module): File /Users/ingrid/.idlerc/config-extensions.cfg, line 1 enable=1 MissingSectionHeaderError: File contains no section headers

[issue21973] Idle should not quit on corrupted user config files

2014-08-04 Thread ingrid
ingrid added the comment: Thanks for your feedback. I can try again when you have written the config warn function or I can try writing the config warn function. The tests aren't relevant anymore if the warning is raised in a tk message box. I think deleting the config files could potentially

[issue10608] Add a section to Windows FAQ explaining os.symlink

2014-08-13 Thread ingrid
ingrid added the comment: I tried writing a section aimed at beginners, please let me know if you think any information should be added or removed. -- keywords: +patch nosy: +ingrid, jesstess Added file: http://bugs.python.org/file36364/issue10608.patch

[issue21077] Turtle Circle Speed 0

2014-09-17 Thread ingrid
ingrid added the comment: This seems to be caused by a bug in TurtleScreen.update/turtle._drawturtle. When the speed is set to zero, the tracer method is used to regulate drawing circles, and when called with a positive integer, tracer calls update. Update iterates over the list of existing