summaryrefslogtreecommitdiff
blob: 38b01ae215b084f5c7fad934afc8a1509dcb4f79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
diff --git a/docs/index.txt b/docs/index.txt
index f472102..1edf711 100644
--- a/docs/index.txt
+++ b/docs/index.txt
@@ -271,7 +271,7 @@ Then you can submit:
     >>> res = form.submit()
     >>> # Or submit a button:
     >>> res = form.submit('submit')
-    >>> print(res)
+    >>> print(res) # doctest:+ELLIPSIS
     Response: 200 OK
     Content-Type: text/plain
     ...
@@ -331,7 +331,7 @@ Examples:
     <class 'BeautifulSoup.BeautifulSoup'>
     >>> res.html.body.div.string
     u'hey!'
-    >>> res.lxml
+    >>> res.lxml # doctest:+ELLIPSIS
     <Element html at ...>
     >>> res.lxml.xpath('//body/div')[0].text
     'hey!'
@@ -343,13 +343,13 @@ Examples:
     >>> res = TestResponse(content_type='application/xml',
     ...                    body='<xml><message>hey!</message></xml>')
     >>> res.request = TestRequest.blank('/')
-    >>> res.xml
+    >>> res.xml # doctest:+ELLIPSIS
     <Element ...>
     >>> res.xml[0].tag
     'message'
     >>> res.xml[0].text
     'hey!'
-    >>> res.lxml
+    >>> res.lxml # doctest:+ELLIPSIS
     <Element xml at ...>
     >>> res.lxml[0].tag
     'message'