[Zope3-checkins] CVS: Zope3/src/zope/tal - talparser.py:1.5
Fred L. Drake, Jr.
fred at zope.com
Fri Mar 19 16:42:05 EST 2004
Update of /cvs-repository/Zope3/src/zope/tal
In directory cvs.zope.org:/tmp/cvs-serv25151
Modified Files:
talparser.py
Log Message:
pass encoding through to the base XMLParser
=== Zope3/src/zope/tal/talparser.py 1.4 => 1.5 ===
--- Zope3/src/zope/tal/talparser.py:1.4 Tue Feb 24 08:58:18 2004
+++ Zope3/src/zope/tal/talparser.py Fri Mar 19 16:42:04 2004
@@ -24,8 +24,8 @@
ordered_attributes = 1
- def __init__(self, gen=None): # Override
- XMLParser.__init__(self)
+ def __init__(self, gen=None, encoding=None): # Override
+ XMLParser.__init__(self, encoding)
if gen is None:
gen = TALGenerator()
self.gen = gen
More information about the Zope3-Checkins
mailing list