2

{!info!} 和 {!input!} 在这个 Python 代码中做了什么?

s += " {!info!}Down Speed: {!input!}%s" % common.fspeed(status["download_payload_rate"])

取自:http ://git.deluge-torrent.org/deluge/tree/deluge/ui/console/commands/info.py?h=1.3-stable

谢谢。

4

1 回答 1

8

它们对 Python 没有任何意义。该字符串s实际上将包含{!info!}and {!input!}。但是,该字符串稍后会被 Deluge 本身解释为进行颜色格式化 - 请参阅ui/console/colors.py,特别是parse_color_string.

于 2013-06-20T03:46:23.523 回答