Changes between Initial Version and Version 3 of Ticket #6849
- Timestamp:
- Jun 16, 2008, 4:15:21 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6849
- Property Has patch set
- Property Patch needs improvement set
- Property Triage Stage Unreviewed → Accepted
-
Ticket #6849 – Description
initial v3 1 {{{ 1 2 pythin manage.py runfcgi --settings=settings \ 2 3 maxchildren=20 maxspare=10 minspare=2 \ 3 4 outlog=xxx.out \ 4 5 errlog=xxx.err 6 }}} 5 7 6 8 and the view code is 7 9 10 {{{ 8 11 def someview(request): 9 12 print u'\u6d4b\u8bd5' #should be sent to outlog, but the UnicodeEncodeError thrown 10 13 }}}