# ensure call to end() in function g() # do not modify functions except g() def begin(): ... def end(): ... def g(): begin() yield 1 yield 2 end() def f(): a = g() return next(a) def ff(): for item in g(): ...
Senior
111
# ensure call to end() in function g() # do not modify functions except g() def begin(): ... def end(): ... def g(): begin() yield 1 yield 2 end() def f(): a = g() return next(a) def ff(): for item in g(): ...
[name] asked: How to understand if an index is used in PostgreSQL, and for what reasons the planner might not use the index?
[name] asked: If a decorator is reapplied to a function, will the previous value of the variable count remain or will it reset to 0?
Write a query that returns channels with >= 2 broadcasts.
[имя] спросил: Можешь предложить другой способ решения предыдущей задачи (последняя передача для каждого канала)?
What is the Transactional Outbox pattern?