diff options
author | Andre Delfino <adelfino@gmail.com> | 2021-04-26 22:13:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-26 22:13:54 (GMT) |
commit | 52cd6d5e1b2bece0d8efb58b1af41071c914ebe6 (patch) | |
tree | 0420c15ff914150667540938f10a9729d8f3743c /Doc/howto | |
parent | 425434dadc30d96dc1c0c628f954f9b6f5edd2c9 (diff) | |
download | cpython-52cd6d5e1b2bece0d8efb58b1af41071c914ebe6.zip cpython-52cd6d5e1b2bece0d8efb58b1af41071c914ebe6.tar.gz cpython-52cd6d5e1b2bece0d8efb58b1af41071c914ebe6.tar.bz2 |
Use the zero argument form of super() in examples for Python3 docs. (GH-22314)
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/logging-cookbook.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index de0f834..5777a4c 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -1188,7 +1188,7 @@ to the above, as in the following example:: class StyleAdapter(logging.LoggerAdapter): def __init__(self, logger, extra=None): - super(StyleAdapter, self).__init__(logger, extra or {}) + super().__init__(logger, extra or {}) def log(self, level, msg, /, *args, **kwargs): if self.isEnabledFor(level): @@ -1783,7 +1783,7 @@ as in the following complete example:: return tuple(o) elif isinstance(o, unicode): return o.encode('unicode_escape').decode('ascii') - return super(Encoder, self).default(o) + return super().default(o) class StructuredMessage: def __init__(self, message, /, **kwargs): @@ -2175,11 +2175,11 @@ class, as shown in the following example:: """ Format an exception so that it prints on a single line. """ - result = super(OneLineExceptionFormatter, self).formatException(exc_info) + result = super().formatException(exc_info) return repr(result) # or format into one line however you want to def format(self, record): - s = super(OneLineExceptionFormatter, self).format(record) + s = super().format(record) if record.exc_text: s = s.replace('\n', '') + '|' return s @@ -2813,7 +2813,7 @@ refer to the comments in the code snippet for more detailed information. # class QtHandler(logging.Handler): def __init__(self, slotfunc, *args, **kwargs): - super(QtHandler, self).__init__(*args, **kwargs) + super().__init__(*args, **kwargs) self.signaller = Signaller() self.signaller.signal.connect(slotfunc) @@ -2883,7 +2883,7 @@ refer to the comments in the code snippet for more detailed information. } def __init__(self, app): - super(Window, self).__init__() + super().__init__() self.app = app self.textedit = te = QtWidgets.QPlainTextEdit(self) # Set whatever the default monospace font is for the platform |