Earlier quoted context omitted.
You're right, I should have addressed that: there's more to syntax than grammar. All of the semantic changes I can think of in Python could easily be implemented as syntax transformations in a way portable across implementations. Decorators, the with statement, print-as-a-function, etc... There might be some I'm missing that would be non-trivial as macros, but I'd benefit significantly just from having the ones that…
I suggest you take a look at the 2.6 release notes ( http://docs.python.org/whatsnew/2.6.html ), the number of items on here that constitute simple syntax transformations is dwarfed by the number that require active work in the VM.
Maybe my point was a little on the subtle side: being able to implement changes to a language's syntax and semantics without doing it again for each and every implementation is a better solution to one problem the moratorium is solving.