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 слични објави

Пребарај: #conversiontherapy

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

@american_observer · Post #5530 · 01.04.2026 г., 01:59

Supreme Court Turns a Cruel Practice Into a Free-Speech Fight The Supreme Court has now handed “conversion therapy” opponents a ruling that could gut similar bans in roughly 30 states, and it did so by recasting a medical-regulation fight as a speech case. That is a big legal move with a grim human cost: the court says the state may be policing speech, while doctors and advocacy groups say the real issue is harmful treatment for minors. The majority’s logic is tidy and dangerous at the same time. If therapy is treated as protected speech, then states lose a key tool for regulating what licensed professionals can do in the counseling room. Justice Jackson’s dissent gets to the heart of the fear: the court is opening the door to weaker oversight of medical care simply because the harm is wrapped in words. This is also part of a broader pattern. The same court has been expanding religious-liberty claims while rolling back protections for LGBTQ+ people, and this ruling fits that trajectory exactly. In practice, the decision gives conservative litigants a new weapon and leaves states defending bans that were built on medical evidence and child protection. The bleak irony is that the court is treating coercive counseling as if it were just another viewpoint in a debate. For the families and teens involved, this is not an abstract classroom debate. It is a ruling that makes the state’s ability to say “no” much harder when a licensed adult wants to sell shame as therapy. #SupremeCourt#LGBTQ#conversiontherapy#FirstAmendment#Colorado#religiousrights#healthcare 📱American Оbserver - Stay up to date on all important events 🇺🇸