[issue13457] Use repr(module name) ImportErrors

2011-11-26 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue13457] Use repr(module name) ImportErrors

2011-11-26 Thread Éric Araujo
Éric Araujo added the comment: __import__ and importlib in Python 3.3 already use repr (see c4361bab6914 and 9f9b7b656761): Traceback (most recent call last): File "", line 1, in ImportError: No module named 'string\n' For other stdlib modules, see #8754. -- nosy: +eric.arau