chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:39:17 +08:00
commit 4ed4e9ff99
1368 changed files with 334957 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
from __future__ import annotations
import logging
from agents import enable_verbose_stdout_logging
def test_enable_verbose_stdout_logging_attaches_handler() -> None:
logger = logging.getLogger("openai.agents")
logger.handlers.clear()
enable_verbose_stdout_logging()
assert logger.handlers
logger.handlers.clear()