Fixes #452 I ended up making a couple of other normalizations to numeric literals too (lowercase everything, don't allow leading or trailing . in floats, remove redundant + sign in exponent). I don't ...
This project implements a Non-deterministic Finite Automaton (NFA) to recognize Python integer literals according to the official Python Language Specification. Our implementation demonstrates how ...