(self, name, linenum)
| 3169 | """Stores information about a namespace.""" |
| 3170 | |
| 3171 | def __init__(self, name, linenum): |
| 3172 | _BlockInfo.__init__(self, linenum, False) |
| 3173 | self.name = name or "" |
| 3174 | self.check_namespace_indentation = True |
| 3175 | |
| 3176 | def CheckEnd(self, filename, clean_lines, linenum, error): |
| 3177 | """Check end of namespace comments.""" |