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.

classification
Title: Invalid syntax in ctypes/util.py
Type: crash Stage:
Components: ctypes Versions: Python 3.0, Python 3.1
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: theller Nosy List: benjamin.peterson, pitrou, theller
Priority: normal Keywords:

Created on 2009-01-10 22:34 by pitrou, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg79582 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2009-01-10 22:34
ctypes/util.py contains invalid py3k syntax at lines 106-107:

        if rv == 10:
            raise OSError, 'gcc or cc command not found'
msg79583 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-01-10 22:37
Fixed in r68511.
History
Date User Action Args
2022-04-11 14:56:44adminsetgithub: 49162
2009-01-10 22:37:48benjamin.petersonsetstatus: open -> closed
nosy: + benjamin.peterson
resolution: fixed
messages: + msg79583
2009-01-10 22:34:44pitroucreate