[Lxml-checkins] r39289 - in lxml/trunk: . src/lxml
scoder at codespeak.net
scoder at codespeak.net
Wed Feb 21 16:01:55 CET 2007
Author: scoder
Date: Wed Feb 21 16:01:53 2007
New Revision: 39289
Modified:
lxml/trunk/CHANGES.txt
lxml/trunk/src/lxml/objectify.pyx
Log:
renamed ObjectifiedDataElement.__setText() to _setText() to make it easier to access
Modified: lxml/trunk/CHANGES.txt
==============================================================================
--- lxml/trunk/CHANGES.txt (original)
+++ lxml/trunk/CHANGES.txt Wed Feb 21 16:01:53 2007
@@ -8,12 +8,15 @@
Features added
--------------
-* The pattern for attribute names in ObjectPath was too restrictive
-
Bugs fixed
----------
+* renamed ObjectifiedDataElement.__setText() to _setText() to make it easier
+ to access
+
+* The pattern for attribute names in ObjectPath was too restrictive
+
1.2 (2007-02-20)
================
Modified: lxml/trunk/src/lxml/objectify.pyx
==============================================================================
--- lxml/trunk/src/lxml/objectify.pyx (original)
+++ lxml/trunk/src/lxml/objectify.pyx Wed Feb 21 16:01:53 2007
@@ -493,7 +493,7 @@
def __repr__(self):
return textOf(self._c_node) or ''
- def __setText(self, s):
+ def _setText(self, s):
"""For use in subclasses only. Don't use unless you know what you are
doing.
"""
More information about the lxml-checkins
mailing list