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.

classification
Title: Add "regen-*" equivalent projects for Windows builds
Type: Stage: resolved
Components: Build Versions: Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: anthonypjshaw Nosy List: anthony shaw, anthonypjshaw, brett.cannon, pablogsal, steve.dower
Priority: normal Keywords: patch

Created on 2019-04-02 00:13 by anthony shaw, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 12654 merged anthonypjshaw, 2019-04-02 00:17
PR 17644 merged steve.dower, 2019-12-17 21:32
Messages (5)
msg339309 - (view) Author: anthony shaw (anthony shaw) Date: 2019-04-02 00:13
Now that pgen is written in Python, it'd be useful for Windows users to be able to rebuild grammar and tokens into the parser table.

The current hook (make regen-grammar) is built into the Makefile.

Add support for VS2017+ vcxproj files to call the script directly
msg339310 - (view) Author: anthony shaw (anthony shaw) Date: 2019-04-02 00:44
Project now also does:
regen-symbol (regenerate Lib/symbol.py)
and regen-keyword (regenerate Lib/keyword.py)
msg358580 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2019-12-17 21:21
New changeset 9e36589d49c1d6b06c0239fa69e8274d7e89e375 by Steve Dower (Anthony Shaw) in branch 'master':
bpo-36500: Add --regen option to PCbuild/build.bat so Windows users can regen grammar, opcodes, tokens and symbols (GH-12654)
https://github.com/python/cpython/commit/9e36589d49c1d6b06c0239fa69e8274d7e89e375
msg358586 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2019-12-17 21:42
Adding just a couple of minor touch-ups in PR 17644, but otherwise thanks Anthony!
msg358592 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2019-12-17 22:14
New changeset a9d0a6a1b932752873e04714c5dda707729078e4 by Steve Dower in branch 'master':
bpo-36500: Simplify PCbuild/build.bat and prevent path separator changing in comments (GH-17644)
https://github.com/python/cpython/commit/a9d0a6a1b932752873e04714c5dda707729078e4
History
Date User Action Args
2022-04-11 14:59:13adminsetgithub: 80681
2019-12-17 22:14:36steve.dowersetstatus: open -> closed
stage: patch review -> resolved
resolution: fixed
versions: + Python 3.9, - Python 3.8
2019-12-17 22:14:19steve.dowersetmessages: + msg358592
2019-12-17 21:42:50steve.dowersetmessages: + msg358586
2019-12-17 21:32:57steve.dowersetpull_requests: + pull_request17112
2019-12-17 21:21:32steve.dowersetmessages: + msg358580
2019-05-09 04:53:47anthonypjshawsetassignee: anthonypjshaw

nosy: + anthonypjshaw
2019-04-02 02:09:33anthony shawsetnosy: + pablogsal
2019-04-02 00:44:51anthony shawsetmessages: + msg339310
2019-04-02 00:23:49anthony shawsetnosy: + brett.cannon, steve.dower
2019-04-02 00:17:07anthonypjshawsetkeywords: + patch
stage: patch review
pull_requests: + pull_request12583
2019-04-02 00:13:34anthony shawcreate