防止Visual Studio代码或IDE泄露Python类私有方法

Prevent Visual Studio Code or IDE From Revealing Python Class Private Methods(防止Visual Studio代码或IDE泄露Python类私有方法)
本文介绍了防止Visual Studio代码或IDE泄露Python类私有方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我只想问一个简短的问题;

从本质上讲,我想知道是否有可能从Visual Studio代码或其他IDE提供的建议列表中隐藏Python类私有方法。

例如,假设我们有一个类"A"

# Creating a class
class A:

    # Declaring public method
    def fun(self):
        print("Public method")

    # Declaring private method
    def __fun(self):
        print("Private method")
    
    # Calling private method via
    # another method
    def Help(self):
        self.fun()
        self.__fun()

现在,我们不希望Visual Studio代码或其他IDE在IDE提供的建议列表中显示"__fun"方法,我们如何才能做到这一点?

我可以看到,即使"__fun"已在类"A"中声明为私有方法,但Visual Studio代码仍会在其代码片段中提示它:

是否有可能摆脱这一点?

推荐答案

我可能找到了您问题的部分解决方案,这可能会有帮助

vscode中有一个Python语言设置,如果启用该设置,将报告在类外部使用"Protected"函数(以下划线开头)。

按CTRL+SHIFT+P,键入&q;配置语言特定设置,然后选择Python。在JSON对象中添加以下属性:

"python.analysis.diagnosticSeverityOverrides": {
    "reportPrivateUsage": "error"
}

来源:code.visualstudio.com/docs/python/settings-reference

这篇关于防止Visual Studio代码或IDE泄露Python类私有方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)