We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
With test/nt/quote-01.nt:
test/nt/quote-01.nt
<http://ar.dbpedia.org/resource/\u0625\u0643\u0634\u0627\u0641_\u0645\u062B\u0627\u0646\u064A> <http://ar.dbpedia.org/property/meshnumber> "12.74"^^<http://dbpedia.org/datatype/nicaraguanC\u00F3rdoba> .
and text/nt/quote-02.nt:
text/nt/quote-02.nt
<http://ar.dbpedia.org/resource/إكشاف_مثاني> <http://ar.dbpedia.org/property/meshnumber> "12.74"^^<http://dbpedia.org/datatype/nicaraguanCórdoba> .
this will fail:
graphA = Graph() graphB = Graph() graphA.parse("test/nt/quote-01.nt", format="ntriples") graphB.parse("test/nt/quote-02.nt", format="ntriples") for subjectA,predicateA,objA in graphA: for subjectB,predicateB,objB in graphB: self.assertEqual(subjectA, subjectB) self.assertEqual(predicateA, predicateB) self.assertEqual(objA, objB)
The text was updated successfully, but these errors were encountered:
Add test as reported in issue RDFLib#859.
dc03515
48275ba
Merge pull request #860 from white-gecko/feature/unquoteAndUriquoteDa…
99c23be
…tatype Fix #859. Unquote and Uriquote Literal Datatype.
No branches or pull requests
With
test/nt/quote-01.nt
:and
text/nt/quote-02.nt
:this will fail:
The text was updated successfully, but these errors were encountered: