You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/rdflib/files/rdflib-3.1.0-test.patch

21 lines
626 B

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: