comparison doc/rst2man.py @ 10413:e433002acb05

fix up a bunch of check-code warnings
author Matt Mackall <mpm@selenic.com>
date Tue, 09 Feb 2010 14:12:22 -0600
parents 08a0f04b56bd
children 13a1b2fb7ef2
comparison
equal deleted inserted replaced
10412:5326800d6937 10413:e433002acb05
110 110
111 111
112 class Table: 112 class Table:
113 def __init__(self): 113 def __init__(self):
114 self._rows = [] 114 self._rows = []
115 self._options = ['center',] 115 self._options = ['center']
116 self._tab_char = '\t' 116 self._tab_char = '\t'
117 self._coldefs = [] 117 self._coldefs = []
118 def new_row(self): 118 def new_row(self):
119 self._rows.append([]) 119 self._rows.append([])
120 def append_separator(self, separator): 120 def append_separator(self, separator):