Changeset 1441
- Timestamp:
- 11/18/06 19:55:56
- Files:
-
- trunk/cherrypy/_cprequest.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/_cprequest.py
r1433 r1441 479 479 # item list is much faster than iterating over every character 480 480 # in a long string. 481 value = [value] 481 if value: 482 value = [value] 483 else: 484 # [''] doesn't evaluate to False, so replace it with []. 485 value = [] 482 486 elif isinstance(value, types.FileType): 483 487 value = file_generator(value)

