Hi all,

I'd like to propose a new PEP for hygienic macros.

I'm attempting to reduce the controversy and pain of adding new syntax to Python,
... by adding new syntax.

That might sound silly, but I hope to persuade that it isn't.

Adding a new feature to the language is always controversial.

Before a new module or functionality is added to the standard library,
it must usually prove itself as a package on PyPI.

(Not always the same package, the value of dataclasses was demonstrated by "attrs".)

However, this isn't currently possible with new language features.

Any new language feature has pros and cons.
It adds expressive power for some (usually experienced) users,
but potentially confuses and inconveniences other users (especially beginners). However, it is very hard, if not impossible, to determine whether adding new syntax will be be beneficial or harmful before the syntax is added.

Is there a way to add new syntax in a way that allows it be battle tested before adding to the released version of the language?
Yes there is, Macros.

I'm not talking about C-style macros which do textual substitution, but "hygienic" macros that rewrite the AST during compilation.

Macros allow domain specific new syntactic features, without bloating the language or confusing newcomers.

In general, I would except macros to be used within libraries, so that those libraries gain the power of their custom macros without making Python ever larger and more complex.

However, there is no reason why they cannot be made more widely available. Should a macro become widely used and popular, then it can be considered for adoption into the language.

The PEP:

https://github.com/markshannon/peps/blob/hygenic-macros/pep-0700.rst


Cheers,
Mark.
_______________________________________________
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-le...@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/7BX4S6ROKPMTTJR64UPRJ4D66C23HMHI/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to