Re: Python Byte Code Hacking

2016-07-14 Thread Steven D'Aprano
On Thursday 14 July 2016 10:14, Ian Kelly wrote: > On Wed, Jul 13, 2016 at 12:48 PM, Vijay Kumar > wrote: >> Hi Everyone, >> I wrote an article on Python byte code hacking. The article is available >> from http://www.bravegnu.org/blog/python-byte-code-hacks.htm

Re: Python Byte Code Hacking

2016-07-13 Thread Ian Kelly
On Wed, Jul 13, 2016 at 12:48 PM, Vijay Kumar wrote: > Hi Everyone, > I wrote an article on Python byte code hacking. The article is available > from http://www.bravegnu.org/blog/python-byte-code-hacks.html The article > uses an incremental approach for explaining Python's code o

Python Byte Code Hacking

2016-07-13 Thread Vijay Kumar
Hi Everyone, I wrote an article on Python byte code hacking. The article is available from http://www.bravegnu.org/blog/python-byte-code-hacks.html The article uses an incremental approach for explaining Python's code objects and how to modify them. Unfortunately, I am stuck with Pyt