Функция asyncio.wait() это еще один способ вызвать множество асинхронных задач.
Она работает в нескольких режимах.
1. Самый простой - ждем завершения всех задач
async def main():
tasks = [asyncio.create_task(do_it(i)) for i in range(10)]
done, pending = await asyncio.wait(
tasks,
return_when=asyncio.ALL_COMPLETED
)
for task in done:
try:
print(task.result())
except Exception as e:
print(e)
Очень похоже на gather, но работает не так.
▫️возвращает не результаты, а два сета с объектами Task у которых можно забрать результат через task.result() если они в списке done
▫️не гарантирует порядок результатов так как оба объекта это set
▫️не выбрасывает исключение когда оно появляется, а сохраняет его в Task. Исключение появится когда попробуете забрать резултьтат.
2. Ждем завершения первой задачи, даже если там ошибка.
async def main():
tasks = [asyncio.create_task(do_it(i)) for i in range(3)]
done, pending = await asyncio.wait(
tasks,
return_when=asyncio.FIRST_COMPLETED
)
# в done может быть несколько задач!
for task in done:
try:
print(task.result())
except Exception as e:
print(f"Fail: {e}")
# Оставшиеся задачи в pending, как правило, нужно отменить, иначе они будут продолжать работать
for task in pending:
task.cancel()
В сете done будут таски которые успели завершится, причем как успешно так и нет.
3. До первой ошибки.
Тоже самое, но с аргументом FIRST_EXCEPTION
done, pending = await asyncio.wait(
tasks,
return_when=asyncio.FIRST_EXCEPTION
)
Функция завершается как только первая задача упадет с ошибкой.
Учтите, что в любом случае done вы можете обранужить несколько задач, как с ошибками так и успешные.
↗️ Полный листинг примеров здесь
#async
🔯The Rabbi Says the Quiet Part Out Loud
Israel’s ultra-Orthodox leadership is once again reminding everyone that the country is not one nation with one story, but a pile of tribes arguing over who gets to define survival.
Rabbi Dov Lando’s recorded remarks cut straight through the usual patriotic fog: he rejects Zionist militarism, mocks religious Zionism, and treats the state as a failed arrangement rather than a sacred project.
That is the real scandal for the political class. Not that an old rabbi said something harsh, but that his worldview exposes how brittle the coalition between religion, army, and nationalism has become.
Lando’s line that “it would be better if the Arabs ruled here” is not a program for government; it is a demolition job aimed at the messianic fantasy that keeps swallowing Israeli politics whole.
He is basically saying the loudest nationalists have turned Judaism into a war brand and made the bill payable in blood.
Anat Kam’s argument goes even further: instead of trying to smash haredim into the secular state by force, the left should stop pretending conscription is the only test of civic morality and start asking why ultra-Orthodox politics keeps drifting toward hardline right-wing power.
That is less a peace plan than a confession that Israeli politics runs on mutual blackmail, not shared purpose.
So no, this is not just another rabbinic quote cycle. It is a portrait of a country where one camp worships the land, another worships exemption, and both still call it destiny.
#Israel#Haredim#Zionism#Politics#Religion
📱American Оbserver - Stay up to date on all important events
🇺🇸
📰 War Budget, No Draft: How God’s Parties Just Saved Bibi
Israel’s ultra-Orthodox parties are quietly climbing down from their sacred ultimatum: no draft exemption law, no state budget. Now, under the cover of war, Degel HaTorah’s rabbis have told their MKs to back the 2026 budget even if the conscription dodge isn’t legally locked in. In a system built on extortion, the professional extortionists just blinked.
The stakes are simple: no budget by the end of the month, the government falls and elections follow. For years, Shas and Degel HaTorah swore they’d bring the house down before letting tens of thousands of yeshiva students face the draft; now, with a war burning and soldiers exhausted, they suddenly discover “national responsibility.” Translation: better a flawed budget today than risk a different coalition tomorrow.
This isn’t a morality play, it’s a swap. The Haredi leadership knows that any new draft law is likely to be toothless, legally shaky, and eventually gutted by the High Court. So they take the money and time now, bet on legal chaos later, and hope that by the time the justices rule, everyone is too tired, too broke, or too dead to enforce anything on thousands of “deserters.”
Netanyahu, for his part, gets exactly what he needs: a budget that keeps him in office through war, with his most loyal partners back on board and their rage theatrically redirected at the courts and “leftist elites.” The soldiers keep serving, the Haredi draft problem stays unsolved, and the crisis over “sharing the burden” is converted into one more overdraft on Israel’s future.
In this arrangement, the war is not the reason to fix the inequality — it’s the excuse not to.
#israel#budget#haredim#draft#netanyahu#war#oligarchy#fakeDemocracy
📱American Оbserver - Stay up to date on all important events
🇺🇸