-
Notifications
You must be signed in to change notification settings - Fork 560
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
fixed issue #535 #536
fixed issue #535 #536
Conversation
thanks for the PR, seems the failing py3 build is unrelated to this, but rather related to SPARQLWrapper's failing dependency on urlgrabber in py3... |
re-running tests after SPARQLWrapper 1.7.1 release... |
def test_nquads_default_graph(): | ||
ds = ConjunctiveGraph() | ||
|
||
src = StringInputSource(""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you try changing this to data = """...
test fails on py3, can you try passing the string via |
I had to make a choice in how this issue was fixed:
I decided that the "default graph" for the parser was the one identified by the publicID passed to the
parse
method, which seems to make sense.