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 Barun Parruck
Recipients Barun Parruck, eric.fahlgren, llllllllll
Date 2016-02-27.07:44:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1456559098.35.0.947948693075.issue26448@psf.upfronthosting.co.za>
In-reply-to
Content
Hi, yes, that works much better, and I've definitely understood!

Now, about the tests, how large would you like them to be? For instance :

code = bytes (
	chr(opmap["JUMP_FORWARD"]) + chr(0) + chr(255) + 
	chr(EXTENDED_ARG) + chr(1) + chr(1) + 
	chr(opmap["JUMP_FORWARD"]) + chr(0) + chr(0) +
	chr(EXTENDED_ARG) + chr(1) + chr(0) +
	chr(opmap["JUMP_ABSOLUTE"]) + chr(0) + chr(1) +
	chr(opmap["RETURN_VALUE"]),
	encoding="latin-1"
	)

Would return [65283, 16842761, 65792]

And I'll make sure I test all the jump instances (I'm shuddering to imagine what a real computer would do if fed with those byte codes)

Do you want the tests to be large? (array size > 10^2/2 as a result), or is the example above fine, if I add three or four more example testing each jump instance?
History
Date User Action Args
2016-02-27 07:44:58Barun Parrucksetrecipients: + Barun Parruck, llllllllll, eric.fahlgren
2016-02-27 07:44:58Barun Parrucksetmessageid: <1456559098.35.0.947948693075.issue26448@psf.upfronthosting.co.za>
2016-02-27 07:44:58Barun Parrucklinkissue26448 messages
2016-02-27 07:44:57Barun Parruckcreate