|
Methods defined here:
-- __init__(self, uplink, name, internal=False, desc='(None given)')
- Initialize self. See help(type(self)) for accurate signature.
+- __init__(self, uplink, name, internal=False, desc='(None given)')
-- __repr__(self)
- Return repr(self).
+- __repr__(self)
Data descriptors defined here:
@@ -342,9 +448,9 @@ Data descriptors defined here:
| PyLink IRC user class. |
|
Methods defined here:
-- __init__(self, nick, ts, uid, ident='null', host='null', realname='PyLink dummy client', realhost='null', ip='0.0.0.0', manipulatable=False)
- Initialize self. See help(type(self)) for accurate signature.
+- __init__(self, nick, ts, uid, ident='null', host='null', realname='PyLink dummy client', realhost='null', ip='0.0.0.0', manipulatable=False, opertype='IRC Operator')
-- __repr__(self)
- Return repr(self).
+- __repr__(self)
Data descriptors defined here:
@@ -358,13 +464,75 @@ Data descriptors defined here:
+class NotAuthenticatedError(builtins.Exception) |
+
+ |
+Exception raised by checkAuthenticated() when a user fails authentication
+requirements. |
+ |
+- Method resolution order:
+- NotAuthenticatedError
+- builtins.Exception
+- builtins.BaseException
+- builtins.object
+
+
+Data descriptors defined here:
+- __weakref__
+- list of weak references to the object (if defined)
+
+
+Methods inherited from builtins.Exception:
+- __init__(self, /, *args, **kwargs)
- Initialize self. See help(type(self)) for accurate signature.
+
+- __new__(*args, **kwargs) from builtins.type
- Create and return a new object. See help(type) for accurate signature.
+
+
+Methods inherited from builtins.BaseException:
+- __delattr__(self, name, /)
- Implement delattr(self, name).
+
+- __getattribute__(self, name, /)
- Return getattr(self, name).
+
+- __reduce__(...)
+
+- __repr__(self, /)
- Return repr(self).
+
+- __setattr__(self, name, value, /)
- Implement setattr(self, name, value).
+
+- __setstate__(...)
+
+- __str__(self, /)
- Return str(self).
+
+- with_traceback(...)
- Exception.with_traceback(tb) --
+set self.__traceback__ to tb and return self.
+
+
+Data descriptors inherited from builtins.BaseException:
+- __cause__
+- exception cause
+
+- __context__
+- exception context
+
+- __dict__
+
+- __suppress_context__
+
+- __traceback__
+
+- args
+
+ |
+
+
+
class Protocol(builtins.object) |
|
Base Protocol module class for PyLink. |
|
Methods defined here:
-- __init__(self, irc)
- Initialize self. See help(type(self)) for accurate signature.
+- __init__(self, irc)
- parseArgs(self, args)
- Parses a string of RFC1459-style arguments split into a list, where ":" may
be used for multi-word arguments that last until the end of a line.
@@ -388,9 +556,7 @@ Data descriptors defined here:
|
class ProtocolError(builtins.Exception) |
- |
-Common base class for all non-exit exceptions. |
- |
+ | |
- Method resolution order:
- ProtocolError
- builtins.Exception
@@ -414,7 +580,7 @@ Methods inherited from builtins.BaseExcept
- __getattribute__(self, name, /)
- Return getattr(self, name).
-- __reduce__(...)
- helper for pickle
+- __reduce__(...)
- __repr__(self, /)
- Return repr(self).
@@ -450,13 +616,12 @@ Data descriptors inherited from builtins.B
Data
|
| |
-conf = {'bot': {'nick': 'PyLink', 'realname': 'PyLink Service Client', 'serverdesc': 'PyLink unit tests', 'user': 'pylink'}, 'logging': {'stdout': 'CRITICAL'}, 'servers': defaultdict(<function <lambda> at 0x7f8f3fcbc9d8>, {})}
+ | conf = {'bot': {'nick': 'PyLink', 'realname': 'PyLink Service Client', 'serverdesc': 'PyLink unit tests', 'user': 'pylink'}, 'logging': {'stdout': 'CRITICAL'}, 'servers': defaultdict(<function <lambda> at 0x7f36077522f0>, {})}
confname = 'testconf'
curdir = '/home/gl/pylink'
files = None
log = <logging.RootLogger object>
logdir = '/home/gl/pylink/log'
logformatter = <logging.Formatter object>
-stdout_handler = <logging.StreamHandler object>
stdout_level = 'CRITICAL' |
|