Set subdir to 'new' or 'cur'.
(self, subdir)
| 1615 | return self._subdir |
| 1616 | |
| 1617 | def set_subdir(self, subdir): |
| 1618 | """Set subdir to 'new' or 'cur'.""" |
| 1619 | if subdir == 'new' or subdir == 'cur': |
| 1620 | self._subdir = subdir |
| 1621 | else: |
| 1622 | raise ValueError("subdir must be 'new' or 'cur': %s" % subdir) |
| 1623 | |
| 1624 | def get_flags(self): |
| 1625 | """Return as a string the flags that are set.""" |
no outgoing calls