Skip to content
Merged
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: 3 additions & 0 deletions fickling/fickle.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ def __post_init__(self) -> None:
"pty",
"commands", # Legacy Python 2 module
"multiprocessing",
"_posixsubprocess",
# Code execution/compilation
"code",
"codeop",
Expand All @@ -91,6 +92,7 @@ def __post_init__(self) -> None:
"pkgutil",
"zipimport",
"gc",
"site",
# Attribute access (getattr equivalent bypasses)
"inspect",
# Operator module bypasses
Expand Down Expand Up @@ -156,6 +158,7 @@ def __post_init__(self) -> None:
"_signal",
"threading",
"_thread",
"atexit",
# Database/file creation
"sqlite3",
"_sqlite3",
Expand Down
Loading