Python dis模块奇怪的语法

时间:2015-10-18 17:44:58

标签: python exception raise

我正在查看python 2.7.10中的dis模块代码,第47行有一些奇怪的语法我不明白:

提出类型错误,\

我想知道','代码是什么?

1 个答案:

答案 0 :(得分:1)

\line continuation个字符。这意味着"这个陈述继续到下一行"。

如果你的代码看起来像,

raise Typeerror, \
"expected string, got tuple"

表现与

完全相同
raise Typeerror, "expected string, got tuple"