记录一次pycharm中,引入其他类可用,下面总是有波浪线,而且Ctrl+b 无法查看类函数的源码
Posted slowfish
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了记录一次pycharm中,引入其他类可用,下面总是有波浪线,而且Ctrl+b 无法查看类函数的源码相关的知识,希望对你有一定的参考价值。
最近在玩python,发现引入其他的函数们总是有波浪线,但是能够使用,crtl+b却无法看到,非常尴尬,然后查看了原因,记录如下:
This inspection detects names that should resolve but don‘(ctrl+f1)t. Due to dynamic dispatch and duck typing, this is possible in a limited but useful number of cases. Top-level and class-level items are supported better than instance items.
解决的方法如下:
在pycharm中设置source路径
file–setting(或者ctrl+alt+s)–project structure
将放package的文件夹设置为source,这样import的模块类等,就是通过这些source文件夹作为根路径来查找,也就是在这些source文件夹中查找import的东西。
以上是关于记录一次pycharm中,引入其他类可用,下面总是有波浪线,而且Ctrl+b 无法查看类函数的源码的主要内容,如果未能解决你的问题,请参考以下文章
Python中批量修改变量名太费劲?Pycharm中使用重命名一次搞定