blob: aea1bf5ac7238f60b6ececff2d14b7ecb67d4ef4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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:
|