summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2012-05-05 09:54:30 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2012-05-05 09:54:30 -0500
commit1583d402240d88ad2a4acc024d348a21657ccaba (patch)
tree53fe882999f38a026c2f8724aeba4ef963e00a34 /docs/topics
parent208e26b39c95ab7569780a7962b25dd4749d9a18 (diff)
Fixed the syntax used for the Python repl examples in docs and docstrings.
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/testing.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
index 3971958dc7..d5ccc2d8fc 100644
--- a/docs/topics/testing.txt
+++ b/docs/topics/testing.txt
@@ -771,7 +771,7 @@ arguments at time of construction:
>>> c = Client()
>>> with open('wishlist.doc') as fp:
- >>> c.post('/customers/wishes/', {'name': 'fred', 'attachment': fp})
+ ... c.post('/customers/wishes/', {'name': 'fred', 'attachment': fp})
(The name ``attachment`` here is not relevant; use whatever name your
file-processing code expects.)