python-2.7 – Pycharm:文档字符串中未解析的引用“True”

在以下代码中:

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’是一个未解析的引用.我不懂为什么.

下面带有黄色弱警告的代码截图:

《python-2.7 – Pycharm:文档字符串中未解析的引用“True”》

最佳答案 报道了这个
bug,现在已经修好了.

点赞