summaryrefslogtreecommitdiff
path: root/dev-python/rdflib/files/rdflib-3.1.0-test.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/rdflib/files/rdflib-3.1.0-test.patch')
-rw-r--r--dev-python/rdflib/files/rdflib-3.1.0-test.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/dev-python/rdflib/files/rdflib-3.1.0-test.patch b/dev-python/rdflib/files/rdflib-3.1.0-test.patch
new file mode 100644
index 00000000000..aea1bf5ac72
--- /dev/null
+++ b/dev-python/rdflib/files/rdflib-3.1.0-test.patch
@@ -0,0 +1,20 @@
+ rdflib/__init__.py | 4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/rdflib/__init__.py b/rdflib/__init__.py
+index b781031..44efb0b 100644
+--- a/rdflib/__init__.py
++++ b/rdflib/__init__.py
+@@ -15,10 +15,10 @@ A tiny example:
+ >>> import rdflib
+
+ >>> g = rdflib.Graph()
+- >>> result = g.parse("http://eikeon.com/foaf.rdf")
++ >>> result = g.parse("http://www.w3.org/2000/10/swap/test/meet/white.rdf")
+
+ >>> print "graph has %s statements." % len(g)
+- graph has 34 statements.
++ graph has 19 statements.
+ >>>
+ >>> for s, p, o in g:
+ ... if (s, p, o) not in g: