Every line of 'python multiline comment' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
152 def comment(s): 153 out = str() 154 for line in s.splitlines(): 155 out += '% ' + line + '\n' 156 return out
339 def c_comment(s): 340 indent() 341 out('/* ') 342 out_Str(s) 343 out(' */\n')
387 def comment(self, text): 388 return " /* {} */ ".format(text)