[Python-checkins] r52081 - in python/branches/release24-maint: Lib/encodings/__init__.py Misc/NEWS

georg.brandl python-checkins at python.org
Sat Sep 30 16:48:04 CEST 2006


Author: georg.brandl
Date: Sat Sep 30 16:48:03 2006
New Revision: 52081

Modified:
   python/branches/release24-maint/Lib/encodings/__init__.py
   python/branches/release24-maint/Misc/NEWS
Log:
Back out r52076, it's causing the buildbots to fail because of test_charmapcodec.



Modified: python/branches/release24-maint/Lib/encodings/__init__.py
==============================================================================
--- python/branches/release24-maint/Lib/encodings/__init__.py	(original)
+++ python/branches/release24-maint/Lib/encodings/__init__.py	Sat Sep 30 16:48:03 2006
@@ -89,7 +89,7 @@
     else:
         modnames = [norm_encoding]
     for modname in modnames:
-        if not modname or '.' in modname:
+        if not modname:
             continue
         try:
             mod = __import__(modname,

Modified: python/branches/release24-maint/Misc/NEWS
==============================================================================
--- python/branches/release24-maint/Misc/NEWS	(original)
+++ python/branches/release24-maint/Misc/NEWS	Sat Sep 30 16:48:03 2006
@@ -122,9 +122,6 @@
 Library
 -------
 
-- Bug #1446043: correctly raise a LookupError if an encoding name given
-  to encodings.search_function() contains a dot.
-
 - Bug #1560617: in pyclbr, return full module name not only for classes,
   but also for functions.
 


More information about the Python-checkins mailing list