0
I Use This!
Inactive

Commits : Listings

Analyzed about 13 hours ago. based on code collected about 16 hours ago.
Apr 24, 2023 — Apr 24, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
scans and parses even more Python files
sma
More... almost 15 years ago
splits parser tests into classic java-based tests and doctest-style tests which are nicely displayed in the IDE's junit test runner
sma
More... almost 15 years ago
518 (2 tests have bad encoding) successfully scan & parse with this commit
sma
More... almost 15 years ago
syntax test now generates 520 single test cases and looks so much nicher in my IDE's junit test runner
sma
More... almost 15 years ago
with this commit, all 149 library files of the Python 3.0 distribution can be scanned and parsed (not necessarily correct) without exceptions
sma
More... almost 15 years ago
implements correct parsing of a simple statement with a trailing semicolon
sma
More... almost 15 years ago
eats br'xxx' literals (bytes and raw strings still don't work)
sma
More... almost 15 years ago
string escapes were and still are not 100% correct (need more test cases)
sma
More... almost 15 years ago
adds float literals
sma
More... almost 15 years ago
adds string escape processing to the scanner (raw strings aren't supported yet)
sma
More... almost 15 years ago
adds bin, oct and hex integers (floats still missing) numbers larger than an int are silently ignored
sma
More... almost 15 years ago
implements multiple assigment
sma
More... almost 15 years ago
fixes string scanning which I accidentally broke before
sma
More... almost 15 years ago
adds hex constants to the scanner
sma
More... about 15 years ago
adds line continuations to the scanner
sma
More... about 15 years ago
attempts to parse b'' and r'' strings
sma
More... about 15 years ago
adds multiline strings to scanner
sma
More... about 15 years ago
fixes assignment to use test list instead of expr list for the right hand side
sma
More... about 15 years ago
adds (preliminary) code to scan and parse all files of the python 3.0 distribution
sma
More... about 15 years ago
changed scanner to correctly (?) deal with indentation
sma
More... about 15 years ago
adds test for lambdas in if of for comprehension
sma
More... about 15 years ago
removes a few TODOs which are done
sma
More... about 15 years ago
removed TODO because yield works now
sma
More... about 15 years ago
removed TODO because yield works now
sma
More... about 15 years ago
tests for syntax error with global/nonlocal/assert
sma
More... about 15 years ago
tests for syntax errors with import / from import
sma
More... about 15 years ago
fixes incorrect parsing of del statement without arguments
sma
More... about 15 years ago
adds missing copyright (very important ;)
sma
More... about 15 years ago
adds test cases for invalid attribute access
sma
More... about 15 years ago
tests function calls
sma
More... about 15 years ago