summaryrefslogtreecommitdiff
path: root/rdflib/plugins/parsers/notation3.py
Commit message (Collapse)AuthorAgeFilesLines
* moved all compat code to rdflib.compatsix_2to3Gunnar Aastrand Grimnes2017-01-311-2/+2
|
* remove format_doctest from py3compatGunnar Aastrand Grimnes2017-01-311-6/+6
| | | | replaced with doctest-ignore-unicode noseplugin
* removed most of the six import from py3compatGunnar Aastrand Grimnes2017-01-301-8/+8
| | | | now six is used throughout.
* six: parsers/notation3.py: hearders; str, unicode, long, unichr, print handlingJoern Hees2017-01-301-13/+23
|
* exclude some `def main():` functions from test coverage analysisJoern Hees2015-03-091-2/+2
|
* warnings for narrow python buildsJoern Hees2015-02-181-1/+13
| | | | | | | | | | | if chars > 0xFFFF are really encountered a UnicodeWarning is issued. On import an ImportWarning is issued. These are ignored by default, but can be enabled if python is invoked with `-W all`, as any good developer should do ^^. closes #453
* use codecs.decode with unicode_escape instead of unichr. Fixes #453Yves-Marie Haussonne2015-02-181-1/+1
|
* Complement pull request #426 https://github.com/RDFLib/rdflib/pull/426. ↵Yves-Marie Haussonne2014-11-171-4/+4
| | | | Correct failing tests. Add correct case for prefix escape in unicode expansion in litterals
* Correctly handle \u in Notation 3 files.Rory McCann2014-11-171-2/+2
| | | | It was using case insensitive regex, so it was mistaking \u and \U.
* fix: issue379 comment out base hash checkNolan Nichols2014-07-101-2/+2
|
* fixed #305Gunnar Aastrand Grimnes2013-12-311-1/+4
|
* added test and fixed #312Gunnar Aastrand Grimnes2013-12-301-2/+5
|
* fix unicode expand excepitonsGunnar Aastrand Grimnes2013-12-221-1/+1
|
* fixed and reanbled last trig tests!Gunnar Aastrand Grimnes2013-12-221-6/+16
|
* skip formulas completely in turtle mode - they get confused with trig graphsGunnar Aastrand Grimnes2013-12-221-4/+4
|
* updated turtle-tests and fixed n+4 in notation3.pyGunnar Aastrand Grimnes2013-12-221-1/+1
|
* keep carriage return in n3Gunnar Aastrand Grimnes2013-12-211-4/+1
|
* cleanupGunnar Aastrand Grimnes2013-12-211-6/+6
|
* unicode escapes in literals and urirefs - fixes #335Gunnar Aastrand Grimnes2013-12-211-43/+30
|
* cleanupGunnar Aastrand Grimnes2013-12-211-1/+2
|
* py3 compat work for notation3Gunnar Aastrand Grimnes2013-12-211-1/+1
|
* fixed n3/turtle parser, allow % escapes in qnames, .s in qnamesGunnar Aastrand Grimnes2013-12-201-9/+39
|
* removed support for n3 . in path expressions, this was abandoned in n3 some ↵Gunnar Aastrand Grimnes2013-12-201-7/+1
| | | | time ago
* support sparql-directives, withouth @ and trailing .Gunnar Aastrand Grimnes2013-12-191-0/+78
|\
| * support BASE and PREFIX as SPARQL Keywords for turtleGunnar Aastrand Grimnes2013-12-191-0/+78
| |
* | skip repeat ; in property-lists in turtleGunnar Aastrand Grimnes2013-12-191-4/+7
| |
* | fix number parsing for turtle, .2 is now a valid decimalGunnar Aastrand Grimnes2013-12-191-17/+23
|/
* Added test for issue 345. Fixes #345. Fixes #336Gunnar Aastrand Grimnes2013-11-201-1/+8
|
* Only accept single quotes around strings when parsing Turtle, not N3.Alexander Dutton2013-10-141-2/+5
|
* Added support for single-quoted Turtle string literals.Alexander Dutton2013-09-161-21/+27
|
* Added a TriG parserGunnar Aastrand Grimnes2013-07-291-120/+111
| | | | | | | Also cleaned up N3 parser a bit, and added a Turtle flag, so that special N3 features are not accepted when parsing as turtle. Fixes #273 - now we should add some tests :)
* more doc updatesgromgull2013-05-071-1/+1
|
* doc updatesgromgull2013-05-071-0/+13
|
* autopep8Gunnar Aastrand Grimnes2013-04-301-1/+1
|
* remove literal normalisation from n3 parser - leave it to the literal class;gromgull2013-03-051-1/+1
|
* apply autopep8 standards.Graham Higgins2013-01-111-173/+254
| | | | | | | | | | | | | | | | | | | | | | | | | | | | $ flake8 rdflib --exclude=pyRdfa,host,extras,transform,rdfs,pyMicrodata rdflib/graph.py:192: W801 redefinition of unused 'BytesIO' from line 189 rdflib/graph.py:194: W402 'BytesIO' imported but unused rdflib/graph.py:680:80: E501 line too long (80 > 79 characters) rdflib/graph.py:682:80: E501 line too long (80 > 79 characters) rdflib/graph.py:686:80: E501 line too long (83 > 79 characters) rdflib/graph.py:690:80: E501 line too long (83 > 79 characters) rdflib/graph.py:692:80: E501 line too long (83 > 79 characters) rdflib/graph.py:695:80: E501 line too long (83 > 79 characters) rdflib/graph.py:698:80: E501 line too long (83 > 79 characters) rdflib/parser.py:21: W801 redefinition of unused 'BytesIO' from line 19 rdflib/compat.py:12: W801 redefinition of unused 'defaultdict' from line 10 rdflib/py3compat.py:10: W801 redefinition of unused 'wraps' from line 7 rdflib/py3compat.py:81: W806 redefinition of function 'b' from line 44 rdflib/py3compat.py:87: W806 redefinition of function 'format_doctest_out' from line 50 rdflib/py3compat.py:97: W806 redefinition of function 'type_cmp' from line 61 rdflib/term.py:54: W801 redefinition of unused 'md5' from line 52 rdflib/store.py:73: W801 redefinition of unused 'BytesIO' from line 71 rdflib/query.py:10: W801 redefinition of unused 'BytesIO' from line 8 rdflib/__init__.py:73: W402 'plugin' imported but unused rdflib/__init__.py:74: W402 'query' imported but unused rdflib/util.py:43: W806 redefinition of function 'sign' from line 50 rdflib/plugins/parsers/hturtle.py:25: W801 redefinition of unused 'html5lib' from line 24 rdflib/plugins/parsers/ntriples.py:141: W402 'BytesIO' imported but unused rdflib/plugins/parsers/structureddata.py:23: W801 redefinition of unused 'html5lib' from line 22
* misc minor cleanupsGunnar Aastrand Grimnes2012-12-051-11/+0
|
* cleanup of notation3.py - removed lots of unused codeGunnar Aastrand Grimnes2012-12-051-709/+4
|
* simplify replace methodGunnar Aastrand Grimnes2012-11-031-5/+2
|
* fix to lang-tag parsing in n3/turtlegromgull2012-10-111-1/+1
|
* fixes #214. Made turtle parser that does not require context-aware store. ↵Gunnar Aastrand Grimnes2012-07-221-11/+22
| | | | Test fixes.
* whitespace gardening.Graham Higgins2012-06-071-519/+523
|
* Re-enable doctests, adjust docstrings for use with py3compat.Graham Higgins2012-02-181-3/+3
|
* fixed n3 parser to allow .s in prefixesgromgull2012-02-141-2/+5
|
* fix for upper-case exponent in number literals in n3/turtlegromgull2012-01-261-1/+1
|
* (Primarily convention) changes made on advice of pylintGraham Higgins2012-01-251-654/+749
|
* Uncomment __all__, tests do all passGraham Higgins2012-01-161-1/+1
|
* __all__ together nowGraham Higgins2012-01-141-0/+2
|
* Integrate Gerhard Weiss' Python 3 fixes.Graham Higgins2012-01-061-2/+2
|
* Changes to canonical function in notation3 parser for Python 3.Thomas Kluyver2011-11-161-23/+25
|