GitXplorerGitXplorer
J

zypy

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
b702227d036e75767bd6e8e0dd10d8ffcd8266be

zypy: add with, class, def, and some others

JJelleZijlstra committed 10 years ago
Unverified
39aa2a570ecfa4e2df8cdabb26b9a9894ee0b59b

Add else blocks

JJelleZijlstra committed 11 years ago
Unverified
10aabb2ba1967343afb783fd80b4af74a80cfb33

Get rid of null statements; add some tests; add some parsing

JJelleZijlstra committed 11 years ago
Unverified
5d39c46927d4e40ac2fbda2bb452e4878ca816be

Add some parser tests

JJelleZijlstra committed 11 years ago
Unverified
f9c3560306edb3281e26ecf20cb2fa604b3940ee

Add parsing for generator expressions

committed 11 years ago
Unverified
34b64feacaf42ad6bd373cf88d560ff718311516

Rename module, write some statement parsing code

JJelleZijlstra committed 11 years ago

README

The README file for this repository.

This is an implementation of a subset of Python, written because I felt like writing it. I completed a lexer (though I'm sure there are still bugs) and am now working on the parser. Once that is done, I may write an interpreter.

The parser is hand-written and does not use a parsing library. This is because I'm interested in getting the experience of writing a parser for a moderately complicated language from scratch (I previously hand-wrote a Scheme parser).