Merge branch 'master' into python3
authorFredrik Tolf <fredrik@dolda2000.com>
Sun, 23 Dec 2012 05:10:13 +0000 (06:10 +0100)
committerFredrik Tolf <fredrik@dolda2000.com>
Sun, 23 Dec 2012 05:10:13 +0000 (06:10 +0100)
1  2 
wrw/sp/cons.py

diff --cc wrw/sp/cons.py
@@@ -1,11 -1,9 +1,9 @@@
  import xml.dom.minidom
  
  class node(object):
-     def __str__(self):
-         doc = xml.dom.minidom.Document()
-         return self.__todom__(doc).toxml()
+     pass
  
 -class text(node, unicode):
 +class text(node, str):
      def __todom__(self, doc):
          return doc.createTextNode(self)