Skip to content

buckley-w-david/bytecode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bytecode

Write python functions directly with bytecode

>>> import bytecode
>>> @bytecode.bytecode()
... def sum(a, b):
...     LOAD_FAST, 0
...     LOAD_FAST, 1
...     BINARY_ADD
...     RETURN_VALUE

>>> sum(5, 6)
11

About

Write python functions directly with bytecode

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages