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
In a """ quoted string, if the last character of the string is a quote it MUST be escaped. We do not:
I.e. """hello """"
The text was updated successfully, but these errors were encountered:
You're talking about this:
In [2]: Literal("""hello ...: \"""") Out[2]: rdflib.term.Literal(u'hello\n"') In [3]: Literal("""hello \"""").n3() Out[3]: u'"""hello\n""""'
and want the last line to be?
u'"""hello\n\""""'
Sorry, something went wrong.
c05c1a8
No branches or pull requests
In a """ quoted string, if the last character of the string is a quote it MUST be escaped.
We do not:
I.e. """hello
""""
The text was updated successfully, but these errors were encountered: