This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author BreamoreBoy
Recipients Arfrever, BreamoreBoy, amaury.forgeotdarc, asvetlov, eric.araujo, ezio.melotti, james.sanders, r.david.murray
Date 2015-02-24.14:25:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1424787905.8.0.975052846777.issue15753@psf.upfronthosting.co.za>
In-reply-to
Content
RuntimeError is now given instead of SystemError.

Python 3.4.2 (v3.4.2:ab2c023a9432, Oct  6 2014, 22:16:31) [MSC v.1600 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> class A:
...     def f(*args):
...         print(super().__repr__())
...
>>> A().f()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<stdin>", line 3, in f
RuntimeError: super(): no arguments

so presumably this can be closed as "out of date"?
History
Date User Action Args
2015-02-24 14:25:05BreamoreBoysetrecipients: + BreamoreBoy, amaury.forgeotdarc, ezio.melotti, eric.araujo, Arfrever, r.david.murray, asvetlov, james.sanders
2015-02-24 14:25:05BreamoreBoysetmessageid: <1424787905.8.0.975052846777.issue15753@psf.upfronthosting.co.za>
2015-02-24 14:25:05BreamoreBoylinkissue15753 messages
2015-02-24 14:25:05BreamoreBoycreate