-
```
What steps will reproduce the problem?
1.Download setup qrcode-0.2.1 from http://pyqrcode.sourceforge.net/
2.python setup.py install
3.C:\Python26\Lib\site-packages\pyqrcode\encoder>python setup.p…
-
```
Purpose of code changes on this branch:
Fix for http://code.google.com/p/rdflib/issues/detail?id=81
After the review, I'll merge this branch into:
/trunk
```
Original issue reported on code.…
-
```
What steps will reproduce the problem?
1. Attempt to parse file example...
http://www.w3.org/2000/10/swap/doc/formats
What is the expected output? What do you see instead?
When I execute...
>>>>…
-
```
What steps will reproduce the problem?
1. Create two graphs, g1 and g2
2. Make them equivalent
3. assert g1 == g2
What is the expected output? What do you see instead?
Expected: True
Actual: Fal…
-
```
I've created this issue to centralize and coordinate work done toward a non-
failing test suite. Update this issue with commits.
```
Original issue reported on code.google.com by `gsf747@gmail.c…
-
```
What steps will reproduce the problem?
>>> from rdflib import URIRef, Literal
>>> from rdflib.Graph import Graph
>>> g = Graph()
>>> g.add((URIRef("foo"), URIRef("foo"), Literal(u'Räksmörgås')))
…
-
```
It's nice that toPython() will convert dateTime XSD datatypes to datetime
python objects:
>>> from rdflib import Literal , Namespace
>>> from datetime import datetime
>>> XSD_NS = Namespace(u'ht…
-
```
input.n3 (based on a dbpedia entry):
"Anna Sergeyevna Kournikova
(Russian: \u0410\u043d\u043d\u0430
\u0421\u0435\u0440\u0433\u0435\u0435\u0432\u043d\u0430
\u041a\u0443\u0440\u043d\u0438\u043a\u…
-
```
>>> x = Literal("2008-12-01T18:02:00Z",
datatype=URIRef('http://www.w3.org/2001/XMLSchema#dateTime'))
>>> x == x
False
If Z is replaced with "-08:00", or the datatype is removed, then the
self-eq…
-
```
What steps will reproduce the problem?
from rdflib.Graph import Graph
from rdflib import StringInputSource
g.parse(StringInputSource(":a b c."), format='n3')
list(g.triples((None,None,None)))
->…