[Python-checkins] r61044 - peps/trunk/pep-3108.txt

brett.cannon python-checkins at python.org
Sun Feb 24 07:09:56 CET 2008


Author: brett.cannon
Date: Sun Feb 24 07:09:56 2008
New Revision: 61044

Modified:
   peps/trunk/pep-3108.txt
Log:
Document the tk package.


Modified: peps/trunk/pep-3108.txt
==============================================================================
--- peps/trunk/pep-3108.txt	(original)
+++ peps/trunk/pep-3108.txt	Sun Feb 24 07:09:56 2008
@@ -533,8 +533,40 @@
 
 .. [2] The ``http.server`` module can combine the specified modules
        safely as they have no naming conflicts.
+
+
+tk package
+//////////
+
+==================  ===============================
+Current Name        Replacement Name
+==================  ===============================
+Canvas              tk.canvas
+Dialog              tk.dialog
+FileDialog          tk.filedialog [4]_
+FixTk               tk._fix
+ScrolledText        tk.scrolledtext
+SimpleDialog        tk.simpledialog [5]_
+Tix                 tk.tix
+Tkconstants         tk.constants
+Tkdnd               tk.dnd
+Tkinter             tk.inter
+tkColorChooser      tk.colorchooser
+tkCommonDialog      tk.commondialog
+tkFileDialog        tk.filedialog [4]_
+tkFont              tk.font
+tkMessageBox        tk.messagebox
+tkSimpleDialog      tk.simpledialog [5]_
+turtle              tk.turtle
+==================  ===============================
+
+.. [4] ``tk.filedialog`` can safely combine ``FileDialog`` and ``tkFileDialog``
+       as there are no naming conflicts.
        
-       
+.. [5] ``tk.simpledialog`` can safely combine ``SimpleDialog`` and
+       ``tkSimpleDialog`` have no naming conflicts.
+
+
 xmlrpc package
 //////////////
 


More information about the Python-checkins mailing list