"""Superclass for tests. A subclass per test-file is created at runtime.""" def CheckAlsoExtension(self, extension): """Return a suitable iwyu flag for checking files with the given extension. """ return '--check_also="%s"' % posixpath.join(self.rootdir, '*' + extension) def Mapp...
Python >>>print("This is\033[31;1;4mreally\033[0m important.")This is really important. Do you see how the escape codes disappear from the output? It’s because this terminal supports ANSI escape codes. Otherwise, some of these characters would appear in literal form. This sometimes happ...