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

Резултати

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

Пребарај: #prisons

当前筛选 #prisons清除筛选
Venezuelanalysis

@venanalysis · Post #2362 · 11.05.2026 г., 19:12

📰 NEWS | Venezuelan Attorney General to Investigate Unreported Death in State Custody Venezuelan Attorney General Larry Devoe has opened an investigation into the death of Victor Hugo Quero Navas, who died in custody in July 2025 at Rodeo I prison near Caracas. Authorities said he died from acute respiratory failure after being hospitalized with gastrointestinal bleeding. The case drew attention after a Caracas court reportedly denied Quero amnesty under Venezuela’s February Amnesty Law, despite authorities later confirming he had died months earlier. Quero’s mother says she repeatedly sought information from prison and judicial authorities without being informed of his death. NGOs have called for an independent investigation into possible due process and human rights violations. Read the full report here 👉https://shorturl.at/fpZKY #JusticeSystem#Prisons

Venezuelanalysis

@venanalysis · Post #1808 · 15.11.2024 г., 22:57

Venezuelan Attorney General Tarek William Saab met with the families of detainees and pledged to review 225 cases based on new evidence. This follows violent protests after the July 28 elections, where authorities arrested over 2,000 people. The review aims to fast-track the release of those deemed innocent. Read the full report here 👉🏼https://shorturl.at/pOfAS #justicesystem#opposition#prisons

Venezuelanalysis

@venanalysis · Post #1603 · 15.06.2024 г., 19:23

Venezuelan President Nicolás Maduro tasked his new minister for penitentiary affairs with taking measures against corrupt practices in the legal system. Inmates in dozens of prisons suspended a hunger strike against judicial delays and poor incarceration conditions following the government's response. Read the full report here: https://shorturl.at/t1g2l #Venezuela#Justice#Prisons#legalsystem