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 francismb
Recipients amaury.forgeotdarc, arigo, benjamin.peterson, eric.araujo, eric.smith, francismb
Date 2014-10-04.14:07:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412431669.5.0.989650707383.issue11145@psf.upfronthosting.co.za>
In-reply-to
Content
Just updating the type to 'behavior'.
 
I can still reproduce this issue:

$ python2.7
Python 2.7.8 (default, Sep  9 2014, 22:08:43) 
[GCC 4.9.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> class Y(long):
...   def __oct__(self):
...     return 'abc'
... 
>>> '%o' % Y()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
SystemError: ../Objects/stringobject.c:4045: bad argument to internal function
>>>
History
Date User Action Args
2014-10-04 14:07:49francismbsetrecipients: + francismb, arigo, amaury.forgeotdarc, eric.smith, benjamin.peterson, eric.araujo
2014-10-04 14:07:49francismbsetmessageid: <1412431669.5.0.989650707383.issue11145@psf.upfronthosting.co.za>
2014-10-04 14:07:49francismblinkissue11145 messages
2014-10-04 14:07:49francismbcreate