Tagged Questions
The isinstance tag has no wiki summary.
4
votes
3answers
196 views
Python duck-typing for MVC event handling in pygame
A friend and I have been playing around with pygame some and came across this tutorial for building games using pygame. We really liked how it broke out the game into a model-view-controller system ...
4
votes
5answers
175 views
Recursion over a list of lists without isinstance()
I have just read "isinstance() considered harmful", and it seems reasonable. In short, it argues for avoiding the use of this function.
Well, just now I happen to be writing a program which takes ...
4
votes
2answers
319 views
Why doesn't Python's `except` use `isinstance`?
The Python documentation for except says:
For an except clause with an
expression, that expression is
evaluated, and the clause matches the
exception if the resulting object is
...
4
votes
5answers
375 views
Checking if an annotation is of a specific type
I am using reflection to see if an annotation that is attached to a property of a class, is of a specific type. Current I am doing:
...
3
votes
2answers
182 views
isinstance of bool?
in Python, i'd like to check to make sure a command line argument is of type bool before I use it in a conditional statement. this: isinstance(sys.argv[2], bool) is coming back false. What's the right ...
3
votes
3answers
227 views
is the “is” operator just syntactic sugar for the “IsInstanceOfType” method
Are the following code snippets equivalent?
class a
{}
class b:a
{}
b foo=new b();
//here it comes
foo is a
//...is the same as...
typeof(a).isinstanceoftype(foo)
Or maybe one of the ...
2
votes
3answers
78 views
How to properly check object types in Python?
Problem: I have to check that the a returned value is a Pyhton dictionary.
Q1. Which of these options is the proper way to do this?
type(x) == dict
type(x) == type(dict)
isinstance(d, dict)
Then ...
0
votes
1answer
22 views
isinstance() and type() equivelence failure due to import mechanism (python/django)
In a Django project I'm working on I import a form in the view as follows
#views.py
from forms import SomeForm
then in a test file I have
#form_test.py
from app.forms import SomeForm
.
.
.
...
0
votes
4answers
54 views
Making 'isinstance' work with decorators
How does the Python isinstance fucntion work internally? Is there anything I can do to alter it's results, like define a special function inside a class or something? Here's my use case:
class ...
0
votes
2answers
237 views
Can't get an object's class name in Python
I'm using isinstance to check argument types, but I can't find the class name of a regex pattern object:
>>> import re
>>> x = re.compile('test')
>>> x.__class__.__name__
...