[TxMt] Re: Adding python commands
Rob McBroom
textmate at skurfer.com
Tue Dec 30 15:55:38 UTC 2008
On 2008-Dec-29, at 3:41 PM, Andrea Crotti wrote:
> Thanks a lot Rob, I have another problem, the thing
> #!/usr/bin/env python
>
> import dis
> from os import environ
> mod = environ['TM_FILENAME'].split('.')[0]
> dis.dis(mod)
>
> Doesn't work because I also need to import mod, but if I put also
> import mod, of course it doesn't work as it's not substituted the
> variable
> value in the import statement.
This seemed to work with the limited testing I did:
exec('import ' + mod)
Just insert that before the call to dis.dis().
--
Rob McBroom
<http://www.skurfer.com/>
Because it screws up the order in which people normally read text.
Original message:
> Why is it bad to top-post your reply?
More information about the textmate
mailing list