[Zope-Checkins] CVS: Zope3/lib/python/Zope/PageTemplate - PageTemplate.py:1.4

Barry Warsaw barry@wooz.org
Fri, 14 Jun 2002 15:21:03 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/PageTemplate
In directory cvs.zope.org:/tmp/cvs-serv26727

Modified Files:
	PageTemplate.py 
Log Message:
Add an explanation about why StringIO is used instead of cStringIO.


=== Zope3/lib/python/Zope/PageTemplate/PageTemplate.py 1.3 => 1.4 ===
 from Zope.TAL.TALInterpreter import TALInterpreter
 from Engine import Engine
+# Don't use cStringIO here!  It's not unicode aware.
 from StringIO import StringIO