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

brett.cannon python-checkins at python.org
Fri Apr 18 01:27:17 CEST 2008


Author: brett.cannon
Date: Fri Apr 18 01:27:17 2008
New Revision: 62371

Log:
Clean up the PEP 8 section to only list stuff not slated to be renamed through
some other mechanism.


Modified:
   peps/trunk/pep-3108.txt

Modified: peps/trunk/pep-3108.txt
==============================================================================
--- peps/trunk/pep-3108.txt	(original)
+++ peps/trunk/pep-3108.txt	Fri Apr 18 01:27:17 2008
@@ -502,6 +502,8 @@
 PEP 8 specifies that modules "should have short, all-lowercase names"
 where "underscores can be used ... if it improves readability"
 [#pep-0008]_.  The use of underscores is discouraged in package names.
+The following modules violate PEP 8 and are not somehow being renamed
+by being moved to a package.
 
 ==================  ==================================================
 Current Name        Replacement Name
@@ -509,20 +511,11 @@
 _winreg             winreg (rename also because module has a public
                     interface and thus should not have a leading
                     underscore)
-Carbon              carbon
-ColorPicker         colorpicker
 ConfigParser        configparser
-Cookie              cookie
 copy_reg            copyreg
-EasyDialogs         easydialogs
-MacOS               macos
-Nav                 nav
-PixMapWrapper       pixmap_wrapper
+PixMapWrapper       pixmapwrapper
 Queue               queue
-ScrolledText        scrolledtext
 SocketServer        socketserver
-Tix                 tix
-Tkinter             tkinter
 ==================  ==================================================
 
 


More information about the Python-checkins mailing list