# HG changeset patch # User Paul Boddie # Date 1624912161 -7200 # Node ID 520036942e1eea2ae50ed7eed0b1a9e0738106a4 # Parent c07b0dd14f8572951df710fe5e0b221ca1adf071 Removed "WikiWord" prevention syntax since MoinLight ignores it. diff -r c07b0dd14f85 -r 520036942e1e docs/wiki/History --- a/docs/wiki/History Mon Jun 28 00:13:11 2021 +0200 +++ b/docs/wiki/History Mon Jun 28 22:29:21 2021 +0200 @@ -71,7 +71,7 @@ == Current Work == It was with such realisations that a new project was effectively born. -Tentatively called "!PythonLight" but renamed to "Lichen" as the code matured, +Tentatively called "PythonLight" but renamed to "Lichen" as the code matured, the objectives now involved a simpler processing framework that merely attempted to catalogue structure members, to determine the origins of such members, and to record data flow within namespaces in order to determine diff -r c07b0dd14f85 -r 520036942e1e docs/wiki/Toolchain --- a/docs/wiki/Toolchain Mon Jun 28 00:13:11 2021 +0200 +++ b/docs/wiki/Toolchain Mon Jun 28 22:29:21 2021 +0200 @@ -73,12 +73,12 @@ which the `parser` module effectively is (as would the `ast` module also be if it were used here), with it typically being implemented as an extension module in a non-Python language (in C for CPython, in Java for Jython, and so on). -Fortunately, the !PyPy project implemented their own parsing module, -`pyparser`, that is intended to be used within the !PyPy environment together -with their own `ast` equivalent, but it has been possible to rework `pyparser` -to produce representations that are compatible with the `compiler` package, -itself being modified in various ways to achieve compatibility (and also to -provide various other conveniences). +Fortunately, the [[http://pypy.org/|PyPy]] project implemented their own +parsing module, `pyparser`, that is intended to be used within the PyPy +environment together with their own `ast` equivalent, but it has been possible +to rework `pyparser` to produce representations that are compatible with the +`compiler` package, itself being modified in various ways to achieve +compatibility (and also to provide various other conveniences). == Program Analysis ==