[Python-checkins] bpo-40280: clean and ignore .wasm files (GH-29794)

tiran webhook-mailer at python.org
Fri Nov 26 08:30:01 EST 2021


https://github.com/python/cpython/commit/d224e769b83a6a027bec8e21ee62db2b96d5af8e
commit: d224e769b83a6a027bec8e21ee62db2b96d5af8e
branch: main
author: Christian Heimes <christian at python.org>
committer: tiran <christian at python.org>
date: 2021-11-26T14:29:46+01:00
summary:

bpo-40280: clean and ignore .wasm files (GH-29794)

files:
M .gitignore
M Makefile.pre.in

diff --git a/.gitignore b/.gitignore
index 0831c58d36748..cfd3163cd1818 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,6 +10,7 @@
 *.so.*
 *.dylib
 *.dll
+*.wasm
 *.orig
 *.pyc
 *.pyd
diff --git a/Makefile.pre.in b/Makefile.pre.in
index be9f68d4e0285..75d3bce946f42 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -2284,6 +2284,7 @@ clean-retain-profile: pycremoval
 	find . -name '*.[oa]' -exec rm -f {} ';'
 	find . -name '*.s[ol]' -exec rm -f {} ';'
 	find . -name '*.so.[0-9]*.[0-9]*' -exec rm -f {} ';'
+	find . -name '*.wasm' -exec rm -f {} ';'
 	find . -name '*.lst' -exec rm -f {} ';'
 	find build -name 'fficonfig.h' -exec rm -f {} ';' || true
 	find build -name '*.py' -exec rm -f {} ';' || true



More information about the Python-checkins mailing list