ConnectionRefusedError--PythonBIF(13)
本帖最后由 zyx2012 于 2025-1-27 02:43 编辑原文:
Help on class ConnectionRefusedError in module builtins:
class ConnectionRefusedError(ConnectionError)
|Connection refused.
|
|Method resolution order:
| ConnectionRefusedError
| ConnectionError
| OSError
| Exception
| BaseException
| object
|
|Methods defined here:
|
|__init__(self, /, *args, **kwargs)
| Initialize self.See help(type(self)) for accurate signature.
|
|----------------------------------------------------------------------
|Methods inherited from OSError:
|
|__reduce__(self, /)
| Helper for pickle.
|
|__str__(self, /)
| Return str(self).
|
|----------------------------------------------------------------------
|Static methods inherited from OSError:
|
|__new__(*args, **kwargs) class method of builtins.OSError
| Create and return a new object.See help(type) for accurate signature.
|
|----------------------------------------------------------------------
|Data descriptors inherited from OSError:
|
|characters_written
|
|errno
| POSIX exception code
|
|filename
| exception filename
|
|filename2
| second exception filename
|
|strerror
| exception strerror
|
|winerror
| Win32 exception code
|
|----------------------------------------------------------------------
|Methods inherited from BaseException:
|
|__getattribute__(self, name, /)
| Return getattr(self, name).
|
|__repr__(self, /)
| Return repr(self).
|
|__setstate__(self, object, /)
|
|add_note(self, object, /)
| Exception.add_note(note) --
| add a note to the exception
|
|with_traceback(self, object, /)
| Exception.with_traceback(tb) --
| set self.__traceback__ to tb and return self.
|
|----------------------------------------------------------------------
|Data descriptors inherited from BaseException:
|
|__cause__
| exception cause
|
|__context__
| exception context
|
|__dict__
|
|__suppress_context__
|
|__traceback__
|
|args
翻译:
模块内置程序中 ConnectionRefusedError 类的帮助:
类 ConnectionRefusedError(ConnectionError)
| 连接被拒绝。
|
| 方法解析顺序:
| ConnectionRefusedError
| 连接错误
| OSError
| 异常
| 基本异常
| 对象
|
| 这里定义的方法:
|
| __init__(self, /, *args, **kwargs)
| 初始化自身。 有关准确的签名,请参见 help(type(self)) 。
|
| ----------------------------------------------------------------------
| 继承自 OSError 的方法:
|
| __reduce__(self, /)
| 为 pickle 提供帮助。
|
| __str__(self, /)
| 返回 str(self)。
|
| ----------------------------------------------------------------------
| 继承自 OSError 的静态方法:
|
| buildins.OSError 的类方法 __new__(*args, **kwargs)
| 创建并返回一个新对象。 请参见 help(type) 获取准确的签名。
|
| ----------------------------------------------------------------------
| 从 OSError 继承的数据描述符:
|
| 字符写入
|
| Erno
| POSIX 异常代码
|
| 文件名
| 异常文件名
|
| 文件名2
| 第二个异常文件名
|
| stringerror
| 异常 strerror
|
| winerror
| Win32 异常代码
|
| ----------------------------------------------------------------------
| 继承自 BaseException 的方法:
|
| __getattribute__(self, name, /)
| 返回 getattr(self,name)。
|
| __repr__(self, /)
| 返回 repr(self)。
|
| __setstate__(self, object, /)
|
| add_note(self, object, /)
| Exception.add_note(note) --
| 为异常添加注释
|
| with_traceback(self, object, /)
| Exception.with_traceback(tb) -- | 为异常添加注释。
| 将 self.__traceback__ 设为 tb 并返回 self。
|
| ----------------------------------------------------------------------
| 从 BaseException 继承的数据描述符:
|
| __cause__
| 异常原因
|
| __context__
| 异常上下文
|
| __dict__
|
| __suppress_context__
|
| __traceback__
|
| args
当客户端无法连接到服务器时,会出现 Python 中的 ConnectionRefusedError。 几个原因包括客户端不知道 IP 或端口地址,以及当客户端想要连接时服务器未运行。 ConnectionRefusedError--PythonBIF
帮助信息:
这是关于内置模块中 ConnectionRefusedError 类的帮助文档。
类 ConnectionRefusedError 是 ConnectionError 的一个子类,表示连接被拒绝的情况。
方法解析顺序:
[*]ConnectionRefusedError
[*]ConnectionError
[*]OSError
[*]Exception
[*]BaseException
[*]object
该类的一些主要方法包括:
[*]__init__(self, /, *args, **kwargs): 初始化自身。
[*]__reduce__(self, /): 为 pickle 提供帮助。
[*]__str__(self, /): 返回字符串形式的异常信息。
[*]__new__(*args, **kwargs): 创建并返回一个新对象。
[*]add_note(self, object, /): 为异常添加注释。
[*]with_traceback(self, object, /): 设置 tracebak 信息并返回异常对象。
当客户端无法连接到服务器时,会出现 Python 中的 ConnectionRefusedError。可能的原因包括:
[*]客户端不知道 IP 或端口地址。
[*]客户端想要连接时服务器未运行。
希望这些信息对你有帮助!如果还有其他问题,请随时提问。
以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。
页:
[1]