File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ def simple_app(environ, start_response):
16
16
17
17
# The following two callbacks just append the name to the return value.
18
18
def on_field (field ):
19
- ret.append(b " Parsed field named: %s " % (field.field_name,))
19
+ ret.append(b " Parsed value parameter named: %s " % (field.field_name,))
20
20
21
21
def on_file (file ):
22
- ret.append(b " Parsed file named: %s " % (file .field_name,))
22
+ ret.append(b " Parsed file parameter named: %s " % (file .field_name,))
23
23
24
24
# Create headers object. We need to convert from WSGI to the actual
25
25
# name of the header, since this library does not assume that you are
@@ -55,7 +55,7 @@ Date: Sun, 07 Apr 2013 01:40:52 GMT
55
55
Server: WSGIServer/0.1 Python/2.7.3
56
56
Content-type: text/plain
57
57
58
- Parsed field named: foo
58
+ Parsed value parameter named: foo
59
59
```
60
60
61
61
For a more in-depth example showing how the various parts fit together, check out the next section.
You can’t perform that action at this time.
0 commit comments