We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.
GitHub fields:
assignee = None closed_at = <Date 2008-12-29.17:57:18.854> created_at = <Date 2008-12-29.01:03:51.680> labels = ['type-bug', 'library'] title = "open('existing_dir') -> IOError instance's attr filename is None" updated_at = <Date 2008-12-29.17:57:18.853> user = 'https://bugs.python.org/zuo'
bugs.python.org fields:
activity = <Date 2008-12-29.17:57:18.853> actor = 'benjamin.peterson' assignee = 'none' closed = True closed_date = <Date 2008-12-29.17:57:18.854> closer = 'benjamin.peterson' components = ['Library (Lib)'] creation = <Date 2008-12-29.01:03:51.680> creator = 'zuo' dependencies = [] files = [] hgrepos = [] issue_num = 4764 keywords = [] message_count = 2.0 messages = ['78437', '78469'] nosy_count = 2.0 nosy_names = ['benjamin.peterson', 'zuo'] pr_nums = [] priority = 'normal' resolution = 'fixed' stage = None status = 'closed' superseder = None type = 'behavior' url = 'https://bugs.python.org/issue4764' versions = ['Python 2.5', 'Python 2.4', 'Python 3.0']
The text was updated successfully, but these errors were encountered:
Py2.4 and 2.5 (and probably other 2.x releases too): >>> try: f=open('existing_dir') ... except IOError, exc: print exc.filename ... None (expected result: "existing_dir") Py3.0 (and possibly 3.1 too): >>> try: f=open('existing_dir') ... except IOError as exc: print(exc.filename) ... None (expected result: "existing_dir")
But no problems with: open('existing_dir', 'w') => exc.filename=='existing_dir' open('not_existing_file') => exc.filename=='not_existing_file'
Guess: It may be similar to issue bpo-599163
Platform/system info: [GCC 4.1.2 (Gentoo 4.1.2 p1.0.2)] on linux2 Linux 2.6.25-gentoo-r9 i686 Intel(R) Pentium(R) 4 CPU 2.40GHz
Sorry, something went wrong.
Fixed in r68014 and r68016.
No branches or pull requests
Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.
Show more details
GitHub fields:
bugs.python.org fields:
The text was updated successfully, but these errors were encountered: