diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2021-10-28 10:14:37 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-28 10:14:37 -0600 |
commit | 13d9205f4057eeeef80a25d410ad123876dc60cd (patch) | |
tree | 18cbd8603e3f3a29d9f40a0bd8a4648356c205c9 /.gitignore | |
parent | bpo-45256: Rationalize code around Python-to-Python calls a bit. (GH-29235) (diff) | |
download | cpython-13d9205f4057eeeef80a25d410ad123876dc60cd.tar.gz cpython-13d9205f4057eeeef80a25d410ad123876dc60cd.tar.bz2 cpython-13d9205f4057eeeef80a25d410ad123876dc60cd.zip |
bpo-45629: Add a test for the "freeze" tool. (gh-29222)
The "freeze" tool has been part of the repo for a long time. However, it hasn't had any tests in the test suite to guard against regressions. We add such a test here. This is especially important as there has been a lot of change recently related to frozen modules, with more to come.
Note that as part of the test we build Python out-of-tree and install it in a temp dir.
https://bugs.python.org/issue45629
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index c3fc748ea97..b2ad76689f1 100644 --- a/.gitignore +++ b/.gitignore @@ -120,6 +120,7 @@ Tools/unicode/data/ Tools/msi/obj Tools/ssl/amd64 Tools/ssl/win32 +Tools/freeze/test/outdir # The frozen modules are always generated by the build so we don't # keep them in the repo. Also see Tools/scripts/freeze_modules.py. |