																				-:| Reblok |:-

Reblok build an Abstract Syntax Tree (AST) from python bytecode

Example:
	>>> from reblok import Parser
	>>> add = lambda x: x + 1
	>>> print Parser().walk(add)
	['function', '<lambda>', [['ret', ('add', ('var', 'x', 'local'), ('const', 1))]], [('x', '<undef>')], None, None, [], {}]

Requirements:
	Byteplay

Compatility:
	python2.[5-7]

	not tested with python3
	few missing keywords with pypy
