On Wed, 23 Jan 2008 04:58:02 +0000, Grant Edwards wrote:

> On 2008-01-22, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> 
>> My expertise, if any, is in assembler. I'm trying to understand Python
>> scripts and modules by examining them after they have been disassembled
>> in a Windows environment.
> 
> You can't dissassemble them, since they aren't ever converted to
> assembler and assembled.  Python is compiled into bytecode for a virtual
> machine (either the Java VM or the Python VM or the .NET VM).


There is the Python disassembler, dis, which dissassembles the bytecode 
into something which might as well be "assembler" *cough* for the virtual 
machine.



-- 
Steven
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to