What is this syntax used for in Python?:
#~ Lorem ipsum dolor sit amet
I've run into this syntax a few times, for example in this script as referenced in this answer. For example:
def gdbExecute(exp):
#~ if gdb.VERSION.startswith("6.8.50.2009"):
#~ return gdb.parse_and_eval(exp)
# Work around non-existing gdb.parse_and_eval as in released 7.0
gdb.execute("set logging redirect on")
gdb.execute("set logging on")
locrep = gdb.execute("%s" % exp, True, True)
gdb.execute("set logging off")
return locrep
I attempted this SymbolHound search, but only came up with ~100 additional references where it's being used, but no direct explanation. There seem to be some indications that it's used for internationalization or translation?