summaryrefslogtreecommitdiff
path: root/docs/reference.txt
diff options
context:
space:
mode:
authorPhilip Jenvey <pjenvey@underboss.org>2009-05-25 01:00:22 +0000
committerPhilip Jenvey <pjenvey@underboss.org>2009-05-25 01:00:22 +0000
commitf00bf3df6145d019b317e956aecbfd881b8fbc8b (patch)
treeb2db7cc3395de20a5187985b9e9474ea0b0a2122 /docs/reference.txt
parent4a458b82f116764a700d1347abfb824aebae5066 (diff)
downloadwebob-f00bf3df6145d019b317e956aecbfd881b8fbc8b.tar.gz
don't assume dict ordering, accomodate Jython's stupid cStringIO repr
Diffstat (limited to 'docs/reference.txt')
-rw-r--r--docs/reference.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/reference.txt b/docs/reference.txt
index de1a589..b475f2c 100644
--- a/docs/reference.txt
+++ b/docs/reference.txt
@@ -68,7 +68,7 @@ constructor that will fill in a minimal environment:
'SERVER_PORT': '80',
'SERVER_PROTOCOL': 'HTTP/1.0',
'wsgi.errors': <open file '<stderr>', mode 'w' at ...>,
- 'wsgi.input': <cStringIO... object at ...>,
+ 'wsgi.input': <...cStringIO... object at ...>,
'wsgi.multiprocess': False,
'wsgi.multithread': False,
'wsgi.run_once': False,
@@ -896,7 +896,7 @@ A possible pattern for your application might be:
SERVER_PORT: '80'
SERVER_PROTOCOL: 'HTTP/1.0'
wsgi.errors: <open file '<stderr>', mode 'w' at ...>
- wsgi.input: <cStringIO... object at ...>
+ wsgi.input: <...cStringIO... object at ...>
wsgi.multiprocess: False
wsgi.multithread: False
wsgi.run_once: False