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

Резултати

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

Пребарај: #salaries

当前筛选 #salaries清除筛选
Addis Standard

@addisstandardeng · Post #21882 · 30.03.2026 г., 12:13

News: #Tigray denies reports of #federal salary budget release, calls claims “misleading” Tigray Communication Affairs Bureau has dismissed circulating reports that the federal government has released #budget allocations for the #salaries of public servants in Tigray, describing the claims as “baseless” and “intended to mislead the public.” In a statement issued on 29 March, the Bureau said no such funds have been received to date, citing information from the regional Bureau of Finance and Resource Mobilization. “The information being disseminated is completely false,” the statement said, warning that the reports are designed to create mistrust between the regional administration and civil servants. The Bureau’s statement comes amid continued uncertainty over the restoration of federal budgetary support to Tigray which was blocked since October 2025. Read more: https://addisstandard.com/?p=56184

Addis Standard

@addisstandardeng · Post #21830 · 25.03.2026 г., 12:52

News: Teachers, students in #Tigray protest federal #salary suspension, call for international pressure Senior officials of the Tigray Interim Administration, alongside educators and students, staged large-scale protests across several towns in Tigray, including the capital #Mekelle, on 24 March 2026, condemning the federal government’s decision to “suspend civil servant #salaries” and calling for international intervention, regional broadcaster, Tigrai Television televised. The demonstrations, which drew thousands of teachers and students, underscored a deepening humanitarian and education crisis in the regional. Regional authorities say the federal government has halted salary payments for teachers since October 2025, a move they argue violates constitutional provisions and international legal obligations. #Amanuel_Assefa, Vice President of the Tigrai Interim Administration, told protesters that the suspension of budgets and salaries is a deliberate effort Read more: https://addisstandard.com/?p=56054