I can't seem to find out why "or" is behaving the way it is. I'm using SQLAlchemy and WTForms.ext.sqlalchemy.QuerySelectField and QuerySelectField can have query_factory set, but if it's missing it should be falling back to the fields query method:
e.g.
class Form1(Form):
fielda = QuerySelectField('Field A')
You can also set the query_factory argument like so:
class Form1(Form):
fielda = QuerySelectField('Field A', query_factory=somefunction)
Then somewhere else you use the form like so:
form = Form1(request.form)
form.fielda.query = MyObjects.query.all()
What I'm seeing is that, if MyObjects.query.all() returns an empty list, I get a NoneType not callable exception on this line in the QuerySelectField _get_object_list() method:
query = self.query or self.query_factory()
Basically, no matter what the value of self.query, the or is still calling self.query_factory() even if it is assigned to None.
So, my question is, is this expected behaviour of or? It appears that it evaluates both and then it decides if it needs to use the second value if the first is None. Is this correct?
orthat's callingself.query_factory()here? Are you sure that there is not something else that's callingself.query_factory()? – inspectorG4dget Oct 26 '12 at 13:57