* When importing division from __future__ the / operator become
__truediv__ instead of __div__. Node now handle both of them. This
operator is overloaded to provide a "nicer" XPath access.
git-archimport-id: frederic@jolliton.com--2005-main/tx--main--0.1--patch-52
return self.__getitem__( path )
+ def __truediv__( self , path ) :
+
+ return self.__getitem__( path )
+
def __idiv__( self , other ) :
raise NotImplementedError
+ def __itruediv__( self , other ) :
+
+ raise NotImplementedError
+
def valueOf( self , path ) :
sequence = self.xpath( path )