move sections
[python/dscho.git] / Lib / xml / dom / minicompat.py
blobd491fb69fc9ccf29c5955404598a327e31662c94
1 """Python version compatibility support for minidom."""
3 # This module should only be imported using "import *".
5 # The following names are defined:
7 # NodeList -- lightest possible NodeList implementation
9 # EmptyNodeList -- lightest possible NodeList that is guarateed to
10 # remain empty (immutable)
12 # StringTypes -- tuple of defined string types
14 # defproperty -- function used in conjunction with GetattrMagic;
15 # using these together is needed to make them work
16 # as efficiently as possible in both Python 2.2+
17 # and older versions. For example:
19 # class MyClass(GetattrMagic):
20 # def _get_myattr(self):
21 # return something
23 # defproperty(MyClass, "myattr",
24 # "return some value")
26 # For Python 2.2 and newer, this will construct a
27 # property object on the class, which avoids
28 # needing to override __getattr__(). It will only
29 # work for read-only attributes.
31 # For older versions of Python, inheriting from
32 # GetattrMagic will use the traditional
33 # __getattr__() hackery to achieve the same effect,
34 # but less efficiently.
36 # defproperty() should be used for each version of
37 # the relevant _get_<property>() function.
39 __all__ = ["NodeList", "EmptyNodeList", "StringTypes", "defproperty"]
41 import xml.dom
43 try:
44 unicode
45 except NameError:
46 StringTypes = type(''),
47 else:
48 StringTypes = type(''), type(unicode(''))
51 class NodeList(list):
52 __slots__ = ()
54 def item(self, index):
55 if 0 <= index < len(self):
56 return self[index]
58 def _get_length(self):
59 return len(self)
61 def _set_length(self, value):
62 raise xml.dom.NoModificationAllowedErr(
63 "attempt to modify read-only attribute 'length'")
65 length = property(_get_length, _set_length,
66 doc="The number of nodes in the NodeList.")
68 def __getstate__(self):
69 return list(self)
71 def __setstate__(self, state):
72 self[:] = state
75 class EmptyNodeList(tuple):
76 __slots__ = ()
78 def __add__(self, other):
79 NL = NodeList()
80 NL.extend(other)
81 return NL
83 def __radd__(self, other):
84 NL = NodeList()
85 NL.extend(other)
86 return NL
88 def item(self, index):
89 return None
91 def _get_length(self):
92 return 0
94 def _set_length(self, value):
95 raise xml.dom.NoModificationAllowedErr(
96 "attempt to modify read-only attribute 'length'")
98 length = property(_get_length, _set_length,
99 doc="The number of nodes in the NodeList.")
102 def defproperty(klass, name, doc):
103 get = getattr(klass, ("_get_" + name)).im_func
104 def set(self, value, name=name):
105 raise xml.dom.NoModificationAllowedErr(
106 "attempt to modify read-only attribute " + repr(name))
107 assert not hasattr(klass, "_set_" + name), \
108 "expected not to find _set_" + name
109 prop = property(get, set, doc=doc)
110 setattr(klass, name, prop)