(self, name, linenum)
| 2837 | """Stores information about a namespace.""" |
| 2838 | |
| 2839 | def __init__(self, name, linenum): |
| 2840 | _BlockInfo.__init__(self, linenum, False) |
| 2841 | self.name = name or '' |
| 2842 | self.check_namespace_indentation = True |
| 2843 | |
| 2844 | def CheckEnd(self, filename, clean_lines, linenum, error): |
| 2845 | """Check end of namespace comments.""" |