這是什麼語法和Python中?:在Python中以#開頭的評論有特殊意義嗎?
#~ Lorem ipsum dolor sit amet
爲this answer引用我在this script碰上這種語法幾次,例如。例如:
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
我試圖this SymbolHound search,但只來了那裏它被用來〜100個額外的引用,但沒有直接的解釋。似乎有跡象表明它用於國際化或翻譯?