Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion android/python-android-dart.exclude
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ lib/python*/turtle*
lib/python*/wsgiref
# Interactive-REPL / dev-only modules + easter eggs / frozen demos (never imported when
# running a script in embedded mode). _pyrepl is intentionally NOT pruned: CPython 3.14's
# pdb imports it at module load, so dropping it breaks pdb / pytest / anything that imports it.
# pydoc and pdb import it at module load, so dropping it breaks pydoc / pdb / pytest /
# anything that imports them.
lib/python*/rlcompleter*
lib/python*/tabnanny*
lib/python*/antigravity*
Expand Down
4 changes: 2 additions & 2 deletions darwin/python-darwin-stdlib.exclude
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ turtle*
wsgiref
# Interactive-REPL / dev-only modules — never imported when running a script (embedded
# mode); plus easter eggs and frozen demo modules. _pyrepl is intentionally NOT pruned:
# CPython 3.14's pdb imports it at module load, so dropping it breaks pdb / pytest /
# anything that imports it on-device.
# CPython 3.14's pydoc and pdb import it at module load, so dropping it breaks
# pydoc / pdb / pytest / anything that imports them.
rlcompleter*
tabnanny*
antigravity*
Expand Down
3 changes: 2 additions & 1 deletion linux/python-linux-dart.exclude
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ lib/python*/turtle*
lib/python*/wsgiref
# Interactive-REPL / dev-only modules + easter eggs / frozen demos (never imported when
# running a script in embedded mode). Globs catch the .pyc too (sources go via *.py above).
lib/python*/_pyrepl
# _pyrepl is intentionally NOT pruned: CPython 3.14's pydoc and pdb import it at module
# load, so dropping it breaks pydoc / pdb / pytest / anything that imports them.
lib/python*/rlcompleter*
lib/python*/tabnanny*
lib/python*/antigravity*
Expand Down
3 changes: 2 additions & 1 deletion windows/python-windows-dart.exclude
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ Lib/site-packages/pip*
Lib/site-packages/setuptools*
Lib/site-packages/wheel*
# Interactive-REPL / dev-only modules + easter eggs / frozen demos.
Lib/_pyrepl
# _pyrepl is intentionally NOT pruned: CPython 3.14's pydoc and pdb import it at
# module load, so dropping it breaks pydoc / pdb / pytest / anything that imports them.
Lib/rlcompleter.py
Lib/tabnanny.py
Lib/antigravity.py
Expand Down
Loading