[issue16974] when "python -c command" does a traceback, it open the file ""
Eric Lammerts added the comment: Does it have to be an identifier in angle brackets? An empty string makes more sense to me. -- ___ Python tracker <http://bugs.python.org/issue16
[issue16974] when "python -c command" does a traceback, it open the file ""
New submission from Eric Lammerts: $ echo lovely spam > "" $ python -c 'open("nonexistent","r")' Traceback (most recent call last): File "", line 1, in lovely spam IOError: [Errno 2] No such file or directory: 'nonexisten