Как работает функция reload()?
Эта функция нужна для того, чтобы перезагрузить изменившийся код из py-файла без рестарта интерпретатора.
Дело в том, что любой импортированный модуль при повторном импорте не будет перечитывать файл. Функция импорта вернёт уже загруженный в память объект модуля. Чтобы обновить код, нужно либо перезапустить всю программу, либо использовать функцию reload()
from importlib import reload
reload(my_module)
🔸 Функция reload() принимает в качестве аргумента только объект модуля или пакета. Она не может перезагрузить класс или функцию. Только весь файл целиком!
🔸 Перезагрузка пакета перезагрузит только его файл __init__.py, если он есть. Но не вложенные модули.
🔸Она не может перезагрузить ранее не импортированный модуль.
🔸При вызове функция reload() перечитывает и перекомпилирует код в файле, создавая новые объекты. После создания новых объектов перезаписывается ранее созданный неймспейс этого модуля.
Это значит, что если где-то этот модуль импортирован через import и обращение к атрибутам происходит через неймспейс (имя) модуля, то такие атрибуты обновятся.
Если какие-либо объекты из этого модуля импортированы через from то они будут ссылаться на старые объекты.
Напишем простой модуль
# mymodule.py
x = 1
Теперь импортируем модуль и отдельно переменную х из модуля
>>> import mymodule
>>> from mymodule import x
>>> print(mymodule.x)
1
>>> print(x)
1
Не перезапуская интерпретатор вносим изменения в модуль
# mymodule.py
x = 2
Делаем перезагрузку модуля и проверяем х ещё раз
>>> reload(mymodule)
>>> print(mymodule.x)
2
>>> print(x)
1
То же самое будет если присвоить любой объект переменной (даже словарь или список)
Повторный импорт обновляет значение
>>> from mymodule import x
>>> print(x)
2
🔸Созданные инстансы классов не обновятся после перезагрузки модуля. Их придётся пересоздать.
#tricks#basic
#DerpFest#ROM#B#May#diting#viper#Baklava#signed#QPR2
DerpFest 16 Stable OFFICIAL | Android 16.2
Device: Xiaomi 12T Pro (diting)
Alias: Redmi K50 Ultra
Date: 2026-05-07
⚡️Fast Download
🧑💻Support Group
🎁PayPal
✨May Release✨
Security & Fixes
- May Security Patch
- Recent App Lock fixed (clear all dismiss)
Features
- Upstreamed GameBar
- Upstreamed Dynamic Bar
- New Volume Dialog customization
- Music Visualizer improved/back
- GApps debloated
- ViPER4Android included
Regressions and Tinkering
- Sidebar sometimes gets stuck and needs to be retoggled
- Dynamic Bar crashes FireFox (specifically) on video playback; Use any other browser or turn off Dynamic Bar when watching videos.
- Custom statusbar icon sets as of now are included, but not functional.
Others
- A valid keybox is required to achieve play integrity.
- Achieve strong integrity without modules using below steps:
1. Disable forcing strong (enable top toggle in spoofing settings)
2. Load valid keybox.xml and pif.json in spoofing
3. Get rid of any integrity related modules if you have any
- if you used modules before, it is recommended to remove them, update, and then add them back
-> some users had bootloops with e.g. LSPosed.
Special Thanks:
- kenway214 for GameBar 👌
- Jean for donating telegram premium! 🫶
- Jean for Fast Mirror! ⚡️
- All my testers
- My core team - guys, you are truly the best! 😌
by: P.A.N.Z.
#DerpFest#ROM#B#April#diting#viper#micam#Baklava#signed#QPR2
DerpFest 16 Stable OFFICIAL | Android 16.2
Device: Xiaomi 12T Pro | Redmi K50 Ultra (diting)
Date: 2026-04-07
⚡️Fast Download
🧑💻Support Group
🎁PayPal
✨Initial STABLE Release✨
Security & Fixes
- April Security Patch
Features
- Android 16.2 (qpr2) in all its glory
- Mi Cam included & fully functional
- GApps debloated
- Dynamic Bar (~Dynamic Island)
- ViPER4Android included
Regressions and Tinkering
- Dynamic Bar crashes Firefox (specifically) in video playback; use any other browser or disable Dynamic Bar while watching videos.
- Reconnecting to 5G from wifi might take a few seconds, but then works fine.
- Custom statusbar icon sets as of now are included, but not functional.
Others
- A valid keybox is required to achieve play integrity.
- Achieve strong integrity without modules using below steps:
1. Disable forcing strong (enable top toggle in spoofing settings)
2. Load valid keybox.xml and pif.json in spoofing
3. Get rid of any integrity related modules if you have any
- if you used modules before, it is recommended to remove them, update, and then add them back
-> some users had bootloops with e.g. LSPosed.
Special Thanks:
- kenway214 for GameBar 👌
- Bomboozler for his awesome contributions
- jezzay for finding ksu commits
- Einargednochsson for BT audio in cars fix 🤝
- Jean for donating telegram premium! 🫶
- Jean for Fast Mirror! ⚡️
- All my testers
- My core team - guys, you are truly the best! 😌
by: P.A.N.Z.
#DerpFest#ROM#B#March#diting#viper#micam#Baklava#signed#QPR2
DerpFest 16 Stable Public Beta OFFICIAL | Android 16.2
Device: Xiaomi 12T Pro | Redmi K50 Ultra (diting)
Date: 2026-03-13
⚡️Fast Download
🧑💻Support Group
🎁PayPal
✨Initial Public Beta Release✨
Security & Fixes
- March Security Patch
Features
- Android 16.2 (qpr2) in all its glory
- Mi Cam included & fully functional
- ViPER4Android included
Regressions and Tinkering
- Vibration statusbar icon doesn't show
- Reconnecting to 5G from wifi might take a few seconds, but then works fine.
- Custom statusbar icon sets as of now are included, but not functional.
Others
- A valid keybox is required to achieve play integrity.
- Achieve strong integrity without modules using below steps:
1. Disable forcing strong (enable top toggle in spoofing settings)
2. Load valid keybox.xml and pif.json in spoofing
3. Get rid of any integrity related modules if you have any
- if you used modules before, it is recommended to remove them, update, and then add them back
-> some users had bootloops with e.g. LSPosed.
Special Thanks:
- kenway214 for GameBar 👌
- Bomboozler for his awesome contributions
- jezzay for finding ksu commits
- Einargednochsson for BT audio in cars fix 🤝
- Jean for donating telegram premium! 🫶
- Jean for Fast Mirror! ⚡️
- All my testers
- My core team - guys, you are truly the best! 😌
by: P.A.N.Z.