From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 5 Sep 2025 10:53:39 +0000 (+0200) Subject: [3.14] gh-138515: Include email module in Emscripten build (gh-138520) (#138533) X-Git-Tag: v3.14.0rc3~89 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09f1eff0df756179c7b908819dea6cd0cec5c5bb;p=thirdparty%2FPython%2Fcpython.git [3.14] gh-138515: Include email module in Emscripten build (gh-138520) (#138533) Co-authored-by: Gyeongjae Choi --- diff --git a/Misc/NEWS.d/next/Library/2025-09-05-07-50-18.gh-issue-138515.E3M-pu.rst b/Misc/NEWS.d/next/Library/2025-09-05-07-50-18.gh-issue-138515.E3M-pu.rst new file mode 100644 index 000000000000..12712b82888e --- /dev/null +++ b/Misc/NEWS.d/next/Library/2025-09-05-07-50-18.gh-issue-138515.E3M-pu.rst @@ -0,0 +1 @@ +:mod:`email` is added to Emscripten build. diff --git a/Tools/wasm/emscripten/wasm_assets.py b/Tools/wasm/emscripten/wasm_assets.py index b08e7ce1114a..78da913ff605 100755 --- a/Tools/wasm/emscripten/wasm_assets.py +++ b/Tools/wasm/emscripten/wasm_assets.py @@ -58,7 +58,6 @@ OMIT_FILES = ( # socket.create_connection() raises an exception: # "BlockingIOError: [Errno 26] Operation in progress". OMIT_NETWORKING_FILES = ( - "email/", "ftplib.py", "http/", "imaplib.py",