Exemplo n.º 1
0
 def print_title_cols(self, cols):
     """
     Set cols to be printed on the left of every page
     format ``A:C`
     """
     if cols is not None:
         if not COL_RANGE_RE.match(cols):
             raise ValueError("Print title cols must be the form C:D")
     self._print_cols = cols
Exemplo n.º 2
0
 def print_title_cols(self, cols):
     """
     Set cols to be printed on the left of every page
     format ``A:C`
     """
     if cols is not None:
         if not COL_RANGE_RE.match(cols):
             raise ValueError("Print title cols must be the form C:D")
     self._print_cols = cols