跟踪:sys.argv [:] = args; TypeError:'元组'对象不支持项目分配

时间:2017-12-07 06:02:38

标签: python-3.x typeerror

尝试跟踪pdb:

python3 -m trace --trace pdb.py helloworld.py

    文件"〜/ python362 / lib / python3.6 / pdb.py",第1654行,主要

Html.fromhtml("your html formatted text")

我希望sys.argv是一个列表,但是python3引发了一个错误。

TypeError:'元组'对象不支持项目分配

1 个答案:

答案 0 :(得分:1)

你是对的,trace.py中有一个错误:

sys.argv = opts.filename, *opts.arguments

Log it