Search Results

0
votes

Do I have to cause an ValueError in Python

For the specific case where your list is a sequence of single-character strings you can get what you want by changing the list to be searched to a string in advance (eg. ''.join(chars)). Yo …
6
votes

Why are Exceptions iterable?

Note that what is happening is not related to any kind of implicit string conversion etc, but because the Exception class implements __getitem__(), and uses it to return the values in the args tupl …
6
votes

Is there a cross-platform way of getting information from Python’s OSError

The errno attribute on the error should be the same on all platforms. You will get WindowsError exceptions on windows, but since this is a subclass of OSError the same " …
2
votes

Best error names, failures or exceptions.

Printer on Fire …
1
vote

Locating (file/line) the invocation of a constructor in python

You could simply store a reference to the caller's frame object, but this is probably a bad idea. This keeps the frames alive, and also holds references to all the local variables used, so it may …