(self, cell)
| 119 | pass |
| 120 | |
| 121 | def _is_num(self, cell): |
| 122 | try: |
| 123 | float(cell) |
| 124 | return True |
| 125 | except ValueError: |
| 126 | return False |
| 127 | |
| 128 | def _init_double_width(self, dw): |
| 129 | """Initialize self._cell_len to determine if double width characters |