xcode - 升级报错处理

527 阅读1分钟

/usr/local/opt/LLDB-master/lldb_commands/iap.py:166: SyntaxWarning: "is not" with a literal. Did you mean "!="?

/usr/local/opt/LLDB-master/lldb_commands/iap.py:166: SyntaxWarning: "is not" with a literal. Did you mean "!="?
  if len(response) is not 4:
/usr/local/opt/LLDB-master/lldb_commands/iap.py:170: SyntaxWarning: "is" with a literal. Did you mean "=="?
  if int(response[0], 16) is 0:
/usr/local/opt/LLDB-master/lldb_commands/yoink.py:65: SyntaxWarning: "is not" with a literal. Did you mean "!="?
  if len(response) is not 3:
/usr/local/opt/LLDB-master/lldb_commands/yoink.py:69: SyntaxWarning: "is" with a literal. Did you mean "=="?
  if int(response[0], 16) is 0:
  • 解决 使用命令行,打开处理 iap.py 根据提示 将 is not 改为 !=
open /usr/local/opt/LLDB-master/lldb_commands/iap.py