在以下代码中:
def f(x):
"""Return the argument
:type x: bool
:param x: the value to return.
:rtype: bool
:returns: the argument.
Examples :
>>>f(True)
True
"""
return x
PyCharm认为’>>> f(True)’行中的’True’是一个未解析的引用.我不懂为什么.
下面带有黄色弱警告的代码截图:
最佳答案 报道了这个
bug,现在已经修好了.