Re: TypeError from Exception
Greg Ewing <[email protected]> Thu, 18 Dec 2008 12:26:58 +1300
| Newsgroups | gmane.comp.python.pyrex |
|---|---|
| Message-ID | <[email protected]> |
Mark Ellis wrote: > A few users have reported tracebacks ending with the following. > > TypeError: exceptions must be strings, classes, or instances, not > RAPIError Looks like the result of not using a new enough version of Pyrex. Version 0.9.6 or later is needed with Python versions that have new-style exception classes. -- Greg