(self, name, linenum)
| 2337 | """Stores information about a namespace.""" |
| 2338 | |
| 2339 | def __init__(self, name, linenum): |
| 2340 | _BlockInfo.__init__(self, linenum, False) |
| 2341 | self.name = name or '' |
| 2342 | self.check_namespace_indentation = True |
| 2343 | |
| 2344 | def CheckEnd(self, filename, clean_lines, linenum, error): |
| 2345 | """Check end of namespace comments.""" |