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 ncoghlan
Recipients larry, ncoghlan, rfk, rhettinger
Date 2013-11-04.02:56:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1383533815.33.0.926707448366.issue19378@psf.upfronthosting.co.za>
In-reply-to
Content
There was another change implemented as part of this: trailing whitespace is now stripped from the lines emitted by the disassembler, which made it possible to simplify the tests a bit (since they no longer have to strip that whitespace themselves, they can just do normal string comparisons)

I rediscovered this existing issue, since the new more comprehensive tests for correct handling of the file parameter didn't have the extra operations to strip the trailing whitespace from each line. Rather than adding it, I just fixed the dissassembler to avoid emitting it in the first place (that was a lot easier now that Instruction._disassemble was the sole place responsible for emitting each line)
History
Date User Action Args
2013-11-04 02:56:55ncoghlansetrecipients: + ncoghlan, rhettinger, larry, rfk
2013-11-04 02:56:55ncoghlansetmessageid: <1383533815.33.0.926707448366.issue19378@psf.upfronthosting.co.za>
2013-11-04 02:56:55ncoghlanlinkissue19378 messages
2013-11-04 02:56:54ncoghlancreate