240
Using comments as arguments in python.
(lemmy.world)
Post funny things about programming here! (Or just rant about your favourite programming language.)
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__
.