Changes between Initial Version and Version 3 of Ticket #6849


Ignore:
Timestamp:
Jun 16, 2008, 4:15:21 PM (16 years ago)
Author:
Ramiro Morales
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6849

    • Property Has patch set
    • Property Patch needs improvement set
    • Property Triage Stage UnreviewedAccepted
  • Ticket #6849 – Description

    initial v3  
     1{{{
    12pythin manage.py runfcgi --settings=settings \
    23  maxchildren=20 maxspare=10 minspare=2 \
    34  outlog=xxx.out \
    45  errlog=xxx.err
     6}}}
    57
    68and the view code is
    79
     10{{{
    811def someview(request):
    912  print u'\u6d4b\u8bd5' #should be sent to outlog, but the UnicodeEncodeError thrown
    10 
     13}}}
Back to Top