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 elazar
Recipients elazar
Date 2013-05-28.02:08:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1369706934.04.0.701065482514.issue18077@psf.upfronthosting.co.za>
In-reply-to
Content
>>> dis.dis('pass')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.7/dis.py", line 45, in dis
    disassemble_string(x)
  File "/usr/lib/python2.7/dis.py", line 112, in disassemble_string
    labels = findlabels(code)
  File "/usr/lib/python2.7/dis.py", line 166, in findlabels
    oparg = ord(code[i]) + ord(code[i+1])*256
IndexError: string index out of range

it happens for any string.
History
Date User Action Args
2013-05-28 02:08:54elazarsetrecipients: + elazar
2013-05-28 02:08:54elazarsetmessageid: <1369706934.04.0.701065482514.issue18077@psf.upfronthosting.co.za>
2013-05-28 02:08:53elazarlinkissue18077 messages
2013-05-28 02:08:53elazarcreate