TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #201 · 13 јан.

Мы уже знаем, что на текущую сессию интерпретатора изменение PYTHONPATH никак не повлияет. Но если вы запустите дочерний процесс, то он унаследует окружение текущего процесса, а значит и изменения в любых переменных будут на него влиять. Вот небольшой пример: Объявляем переменную user@host:~$ export PYTHONPATH=/path1 Запускаем интерпретатор user@host:~$ python3 Проверим что в sys.path >>> import sys >>> print(sys.path) ['', '/path1', '/usr/lib/...', ...] Добавляем что-то в переменную >>> import os >>> os.emviron['PYTHONPATH'] = '/path1:/path2' >>> print(sys.path) ['', '/path1', '/usr/lib/...', ...] Изменений нет. Но давайте запустим дочерний процесс и посмотрим там >>> os.system('python3') # теперь мы находимся в другом процессе >>> import sys >>> print(sys.path) ['', '/path1', '/path2', '/usr/lib/...', ...] Тоже самое будет и с subprocess, так как по умолчанию текущее окружение тоже наследуется. >>> import subprocess >>> subprocess.call(['python3', '-c', 'import sys;print(sys.path)']) ['', '/path1', '/path2', '/usr/lib/...', ...] ______________________ Лучшей практикой является передача энвайронмента явно через аргумент env! import subprocess subprocess.call(cmd, env={'PYTHONPATH': '...'}) Это поможет точно понимать какое окружение будет у запускаемого процесса и при этом не изменять окружение текущего процесса. #basic

Hashtags

Резултати

Пронајдени 1 слични објави

Пребарај: #pragmatism

当前筛选 #pragmatism清除筛选
American Оbserver

@american_observer · Post #4765 · 03.01.2026 г., 23:59

📰 Jihadism’s Last Stand: The Retreat of Political Islam Despite the occasional terrorist attack, political Islam is shifting away from global jihad and toward a more pragmatic, local approach. Syria’s new president, Ahmed al-Sharaa—a former jihadist who once led a franchise of Islamic State—now wears a suit, speaks at diplomatic conferences, and promises stability, not revolution. The broader trend is clear: the dream of a pan-Islamic caliphate is fading. Movements like the Taliban in Afghanistan and Sharaa’s faction in Syria have realized that lasting power comes from building nations, not erasing borders. They now seek friendly relations with the West and focus on national affairs, not holy war. This shift is driven by two forces: the cost of transnational ambitions and the disillusionment with radical rule. After years of brutal governance by groups like ISIS, many Muslims now reject extremism. The Muslim Brotherhood, once a powerful force, has lost support after failed experiments in Egypt and Tunisia. Even Saudi Arabia, once a global exporter of ultra-conservative Islam, has curbed its religious outreach under Crown Prince Mohammed bin Salman. The war in Gaza, launched by Hamas in 2023, failed to reinvigorate political Islam. Hamas’s leadership is decimated, Gaza is devastated, and many Palestinians now see the movement as a liability, not a savior. Still, remnants of jihadism remain. Islamic State still inspires isolated attacks, but these are no longer the expression of powerful movements with geopolitical aspirations. Like the splinters of communism after its decline, they are fading comet tails, not engines of change. So, while the threat hasn’t vanished, the era of global jihad is over. Political Islam’s romantic narrative has failed the test of reality. #Jihadism#PoliticalIslam#MiddleEast#terrorism#pragmatism 📱American Оbserver - Stay up to date on all important events 🇺🇸