-
Notifications
You must be signed in to change notification settings - Fork 565
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bad SPARQLStore handling of empty literals #457
Milestone
Comments
@gjhiggins could you review the changes in #459 ? There is some weird |
@joernhees I confirm that the changes in #459 fix the problem. |
joernhees
added a commit
to joernhees/rdflib
that referenced
this issue
Feb 25, 2015
joernhees
added a commit
to joernhees/rdflib
that referenced
this issue
Feb 25, 2015
joernhees
added a commit
that referenced
this issue
Feb 25, 2015
SPARQLStore does not transform Literal('') into Literal('None') anymore, fixes #457
This was referenced Jan 16, 2017
This was referenced Mar 16, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When an empty literal is returned to a SPARQLStore, it becomes an
rdflib.term.Literal(u'None')
instead of anrdflib.term.Literal(u'')
:raises an
AssertionError: rdflib.term.Literal(u'None')
The problem seems to be in
rdflib.plugins.stores.sparqlstore:CastToTerm
:raises an
AssertionError: rdflib.term.Literal(u'None')
The text was updated successfully, but these errors were encountered: