From b5af89b5941541b6864de2ed01690ae3bf889f1d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 30 Sep 2020 22:49:41 +0530 Subject: [PATCH] Dont remove lib2to3 as it is used by some thirdparty deps --- bypy/linux/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bypy/linux/__main__.py b/bypy/linux/__main__.py index f37c83d512..e4de56325f 100644 --- a/bypy/linux/__main__.py +++ b/bypy/linux/__main__.py @@ -135,7 +135,7 @@ def copy_python(env, ext_dir): y = j(srcdir, x) ext = os.path.splitext(x)[1] if os.path.isdir(y) and x not in ('test', 'hotshot', - 'site-packages', 'idlelib', 'lib2to3', 'dist-packages'): + 'site-packages', 'idlelib', 'dist-packages'): shutil.copytree(y, j(env.py_dir, x), ignore=ignore_in_lib) if os.path.isfile(y) and ext in ('.py', '.so'): shutil.copy2(y, env.py_dir)