summaryrefslogtreecommitdiff
path: root/Python/frozen_hello.h
Commit message (Collapse)AuthorAgeFilesLines
* bpo-42739: Don't use sentinels to mark end of line table. (GH-25657)Mark Shannon2021-04-291-1/+1
| | | | | * Add length parameter to PyLineTable_InitAddressRange and doen't use sentinel values at end of table. Makes the line number table more robust. * Update PyCodeAddressRange to match PEP 626.
* bpo-43372: Use _freeze_importlib for regen-frozen. (GH-24759)Neil Schemenauer2021-03-061-12/+11
| | | | | | | This approach ensures the code matches the interpreter version. Previously, PYTHON_FOR_REGEN was used to generate the code, which might be wrong. The marshal format for code objects has changed with bpo-42246, commit 877df851. Update the code and the expected code sizes in ctypes test_frozentable.
* bpo-39448: Add regen-frozen makefile target. (GH-18174)Neil Schemenauer2021-02-181-0/+13
Add the "regen-frozen" makefile target that regenerates the code for the frozen __hello__ module.