mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Get rid of many apply() calls.
This commit is contained in:
parent
f389c77273
commit
68468eba63
38 changed files with 85 additions and 91 deletions
|
@ -41,7 +41,7 @@ __all__ = ["NNTP","NNTPReplyError","NNTPTemporaryError",
|
|||
class NNTPError(Exception):
|
||||
"""Base class for all nntplib exceptions"""
|
||||
def __init__(self, *args):
|
||||
apply(Exception.__init__, (self,)+args)
|
||||
Exception.__init__(self, *args)
|
||||
try:
|
||||
self.response = args[0]
|
||||
except IndexError:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue