[issue21941] Clean up turtle TPen class

2018-06-16 Thread Carol Willing
Carol Willing added the comment: Hi ingrid, Thanks for your work on this issue. I'm triaging the open "turtle" issues, and I'm going to go ahead and close this one. If you would like to open a new, more specific issue, I would welcome that. Thanks. -- nosy: +willingc resolution:

[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

[issue21941] Clean up turtle TPen class

2014-07-12 Thread Ezio Melotti
Ezio Melotti added the comment: While TPen doesn't seem to be documented, it's not prefixed by a '_', so there might people using it and relying on these methods. -- nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org

[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.