gpython
gpython copied to clipboard
gpython is a python interpreter written in go "batteries not included"
Implement dict struct that takes Object as key store key and value in array together so that dict is ordered Issue #118
Fixes go-python/gpython#12.
I'm importing the builtin package, but I often get errors like this. What have I done wrong please?
I've been trying to understand how this project works, and also how we can support newer language versions. I've done some reading into how asyncio works, and I thought I...
Our team would find it useful if this package could parse an AST from code conforming to the python 3.8 grammar. I understand that actually supporting newer python features would...
There should definitely be a `input()` function; to get user input. This would be implemented in the `builtin` function. Doc in *docs.python.org*; If the prompt argument is present, it is...
@sbinet @ncw and anyone interested... Currently, gpython's 'About' line on github is: > gpython is a python interpreter written in go "batteries not included" After the [upcoming worklist](https://github.com/go-python/gpython/issues/166), I think...
Below is my upcoming worklist I plan to take on in the coming weeks/months: 1. Add stack limit value to `py.ContextOpts` and implement ([Issue 143](https://github.com/go-python/gpython/issues/143)) 2. Additions to `py.utils`, including...
I want to try to implement `hashlib` (PR will follow). For now I have implemented `Type`, `module`, module method and some "magic methods", but I cannot figure out how to...
The ReadMe.md says: ` It does not include very many python modules as many of the core modules are written in C not python. The converted modules are: builtins marshal...