(self, name, linenum)
| 3109 | """Stores information about a namespace.""" |
| 3110 | |
| 3111 | def __init__(self, name, linenum): |
| 3112 | _BlockInfo.__init__(self, linenum, False) |
| 3113 | self.name = name or "" |
| 3114 | self.check_namespace_indentation = True |
| 3115 | |
| 3116 | def CheckEnd(self, filename, clean_lines, linenum, error): |
| 3117 | """Check end of namespace comments.""" |