[issue10957] Python FAQ grammar error

2011-01-21 Thread Rafe Kettler
Rafe Kettler rafe.kett...@gmail.com added the comment: for a faster compile Compile isn't a noun; the most grammatically correct sentences would be for faster compilation. -- nosy: +rafe.kettler ___ Python tracker rep...@bugs.python.org http

[issue10072] ftplib documentation is unclear

2010-10-12 Thread Rafe Kettler
Rafe Kettler rafe.kett...@gmail.com added the comment: I've drafted up a patch. For those of you who don't want to read the diff, it changes all references to FTP reply codes with short explanations of what they do. Also, in the docs for retrlines() and nlst() the commands LIST, NLST

[issue10072] ftplib documentation is unclear

2010-10-12 Thread Rafe Kettler
Changes by Rafe Kettler rafe.kett...@gmail.com: -- keywords: +patch Added file: http://bugs.python.org/file19202/ftplib-patch.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10072

[issue10072] ftplib documentation is unclear

2010-10-12 Thread Rafe Kettler
Changes by Rafe Kettler rafe.kett...@gmail.com: Removed file: http://bugs.python.org/file19201/ftplib-patch.rst ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10072

[issue10072] ftplib documentation is unclear

2010-10-12 Thread Rafe Kettler
Changes by Rafe Kettler rafe.kett...@gmail.com: Added file: http://bugs.python.org/file19203/ftplib-patch.txt ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10072

[issue10072] ftplib documentation is unclear

2010-10-12 Thread Rafe Kettler
Changes by Rafe Kettler rafe.kett...@gmail.com: Removed file: http://bugs.python.org/file19203/ftplib-patch.txt ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10072

[issue10072] ftplib documentation is unclear

2010-10-12 Thread Rafe Kettler
Rafe Kettler rafe.kett...@gmail.com added the comment: Double spaced after the sentence ending periods. -- Added file: http://bugs.python.org/file19204/ftplib-patch.txt ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10072

[issue10171] Ugly buttons in some Tkinter objects in Windows

2010-10-21 Thread Rafe Kettler
New submission from Rafe Kettler rafe.kett...@gmail.com: Some of the dialogs in Tkinter don't correctly show buttons in newer versions of Windows (XP, Vista, 7). Instead, they use square Win2000-and-before-type buttons. Here's some Python 2.7 code that illustrates this: import tkMessageBox

[issue10171] Ugly buttons in some Tkinter objects in Windows

2010-10-22 Thread Rafe Kettler
Changes by Rafe Kettler rafe.kett...@gmail.com: -- components: +Windows ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10171 ___ ___ Python-bugs

[issue10171] Ugly buttons in some Tkinter objects in Windows

2010-10-24 Thread Rafe Kettler
Rafe Kettler rafe.kett...@gmail.com added the comment: If you were to create a FileDialog, you should see proper buttons (at least I do in Windows): import tkFileDialog tkFileDialog.askopenfile() I think that this goes more along the lines of a bug, because I know that Tkinter has

[issue10171] Ugly buttons in some Tkinter objects in Windows

2010-10-24 Thread Rafe Kettler
Rafe Kettler rafe.kett...@gmail.com added the comment: I haven't had a chance to look too deeply into the source, but it appears (at least in Python 2.7) that the problem has something to do with the commands that the classes in tkMessageBox and tkColorChooser pass to tk.call(). The Message

[issue9702] Python violates most users expectations via the modification differences of immutable and mutable objects in methods

2010-10-29 Thread Rafe Kettler
Changes by Rafe Kettler rafe.kett...@gmail.com: -- nosy: +rafe.kettler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9702 ___ ___ Python-bugs-list

[issue10171] Ugly buttons in some Tkinter objects in Windows

2010-11-02 Thread Rafe Kettler
Rafe Kettler rafe.kett...@gmail.com added the comment: I've tested how these dialogs display in regular Tcl/Tk, and it appears the problem resides in the Tcl implementation, not the Python binding. You can see for yourself by running this Tcl script: package require Tk tk_messageBox

[issue10171] Ugly buttons in some Tkinter objects in Windows

2010-11-02 Thread Rafe Kettler
Rafe Kettler rafe.kett...@gmail.com added the comment: I don't know anything about the Tcl development process either. Luckily, Tk is hosted on SourceForge so it was just a matter of adding a ticket to their issue tracker. Hopefully it'll get fixed quickly and the fix will percolate down

[issue12574] Documentation for Queue in 2.x has an incorrect title

2011-07-15 Thread Rafe Kettler
New submission from Rafe Kettler rafe.kett...@gmail.com: The documentation for Queue in all versions of Python 2.7 and 2.6 (see http://docs.python.org/release/2.6.7/library/queue.html#module-Queue for the 2.7 docs) has the title queue -- A synchronized queue class. The module, however

[issue12574] Documentation for Queue in 2.x has an incorrect title

2011-07-16 Thread Rafe Kettler
Rafe Kettler rafe.kett...@gmail.com added the comment: Okay, here's a patch. I also went ahead and added my name to ACKS, since this is my 3rd or 4th patch. Rafe -- keywords: +patch Added file: http://bugs.python.org/file22677/queue_docs.patch