summaryrefslogtreecommitdiffstats
path: root/Tools/scripts/umarshal.py
Commit message (Collapse)AuthorAgeFilesLines
* [3.11] Fix the long64 reader in umarshal.py (GH-107828) (GH-107850)Miss Islington (bot)2023-08-101-4/+4
| | | | | (cherry picked from commit 50bbc56009ae7303d2482f28eb62f2603664b58f) Co-authored-by: Martin DeMello <martindemello@gmail.com>
* GH-88116: Use a compact format to represent end line and column offsets. ↵Mark Shannon2022-04-211-2/+0
| | | | | | | | | | | | (GH-91666) * Stores all location info in linetable to conform to PEP 626. * Remove column table from code objects. * Remove end-line table from code objects. * Document new location table format
* bpo-45873: Get rid of bootstrap_python (#29717)Guido van Rossum2021-11-231-119/+118
| | | | | | | | | | | | | Instead we use $(PYTHON_FOR_REGEN) .../deepfreeze.py with the frozen .h file as input, as we did for Windows in bpo-45850. We also get rid of the code that generates the .h files when make regen-frozen is run (i.e., .../make_frozen.py), and the MANIFEST file. Restore Python 3.8 and 3.9 as Windows host Python again Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
* bpo-45850: Implement deep-freeze on Windows (#29648)Guido van Rossum2021-11-221-0/+328
Implement changes to build with deep-frozen modules on Windows. Note that we now require Python 3.10 as the "bootstrap" or "host" Python. This causes a modest startup speed (around 7%) on Windows.