This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients ncoghlan, serhiy.storchaka, vstinner
Date 2017-06-12.13:43:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1497274981.52.0.670681266709.issue30638@psf.upfronthosting.co.za>
In-reply-to
Content
`make regen-all` regenerates many generated files. But not all.

1. Argument Clinic files has their own make target, `make clinic`. Perhaps "clinic" should be a dependency for "regen-all".

2. Lib/token.py and Lib/symbols.py are generated from Include/token.h and Include/graminit.h.

3. Lib/keyword.py is generated from graminit.c.

4. Modules/sre_constants.h is generated from Lib/sre_constants.py.

5. Lib/stringprep.py is generated by mkstringprep.py (currently it is slightly outdated).

6. Objects/unicodetype_db.h, Objects/unicodetype_db.h and Modules/unicodename_db.h are generated by makeunicodedata.py (it downloads Unicode data from Internet).

Some generating scripts support Python 2.7 and even older versions. Some generating scripts (in particular Argument Clinic) need recent Python version (3.5+ or like).
History
Date User Action Args
2017-06-12 13:43:01serhiy.storchakasetrecipients: + serhiy.storchaka, ncoghlan, vstinner
2017-06-12 13:43:01serhiy.storchakasetmessageid: <1497274981.52.0.670681266709.issue30638@psf.upfronthosting.co.za>
2017-06-12 13:43:01serhiy.storchakalinkissue30638 messages
2017-06-12 13:43:01serhiy.storchakacreate