The following "Constant False" ASK query returns True:
from rdflib import Graph
graph = Graph()
result = graph.query("ask where {filter(false)}")
assert not result.askAnswer
filter(false) should effectively negate the possibility of a solution, so I would consider a result.askAnswer of True actually incorrect.
The following "Constant False" ASK query returns
True:filter(false)should effectively negate the possibility of a solution, so I would consider aresult.askAnswerofTrueactually incorrect.