This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author sonderblade
Recipients
Date 2007-03-13.23:05:30
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Yes, that could be fixed too. But all tracebacks originating from the standard library also get the double slash:

>>> import fnmatch
>>> fnmatch.filter(1, 2)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/bjourne/install//lib/python2.6/fnmatch.py", line 46, in filter
    res = translate(pat)
  File "/home/bjourne/install//lib/python2.6/fnmatch.py", line 78, in translate
    i, n = 0, len(pat)
TypeError: object of type 'int' has no len()

IMHO, that is ugly enough that it ought to be fixed.
History
Date User Action Args
2007-08-23 15:57:21adminlinkissue1676135 messages
2007-08-23 15:57:21admincreate