Files
codeql/python/extractor/tests/tokenizer/comments.py

14 lines
150 B
Python

import sys
def f():
code-here # Line end comment
#Indented comment
#Unindented comment
return 1
def g(arg):
return arg
x = g(f())