Beispiel #1
0
 def looksComplete(self):
     """Return True when the document looks couplete and could be valid.
     
     This is determined by looking at the depth of the state at the end of
     the last line: if it is 1 it could be a valid document.
     
     """
     return tokeniter.state_end(self.document().lastBlock()).depth() == 1
Beispiel #2
0
 def state_end(self, block):
     """Return the state at the end of the specified block."""
     return tokeniter.state_end(block)
Beispiel #3
0
 def state_end(self, block):
     """Return the state at the end of the specified block."""
     return tokeniter.state_end(block)