This isn’t standard python. lib
is not in the standard library. Python also doesn’t have any special variables where it stores comments, other than __doc__
which stores a docstring. If I had to guess, add
is reading the file/REPL via __file__
.
It’s a string, although sometimes Python conflates the two. The recommended way to make a multi-line comment is to just make a multi-line string and just don’t use it.