context_manager.py
Python•マスター
Explorer
C40
C++40
C#40
Dart40
Go40
Java40
JavaScript40
Kotlin40
Objective-C40
Perl40
PHP40
Python
初級10
中級10
上級10
エキスパート5
マスター5
async_pool.py
retry_decorator.py
singleton_meta.py
context_manager.py
dataclass_config.py
R40
Ruby40
Rust40
Shell40
Swift40
TypeScript40
context_manager.py
Click to focus
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@contextmanager↵
def transaction(conn):↵
trans = conn.begin()↵
try:↵
yield conn↵
trans.commit()↵
except Exception:↵
trans.rollback()↵
raise↵
finally:↵
trans.close()↵
↵
async with transaction(db) as conn:↵
await conn.execute(query)
0WPM•0%•0:00•0/267(0%)|Ln 1, Col 1
UTF-8•Python