diff options
| author | root <root@alpha.trunkmasters.com> | 2026-08-14 03:04:40 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-08-14 03:04:40 -0500 |
| commit | 44ac9950da93ffaa670439fbc31f0a3f95378bb3 (patch) | |
| tree | 88c80e746a3195bb4d1869bcb64467fdabcc54c8 /dev-python/python-fire/files/python-fire-inspect.patch | |
| parent | 00a5031b2e58fb36fc981fe226565880b4798a8b (diff) | |
| download | baldeagleos-repo-44ac9950da93ffaa670439fbc31f0a3f95378bb3.tar.gz baldeagleos-repo-44ac9950da93ffaa670439fbc31f0a3f95378bb3.tar.xz baldeagleos-repo-44ac9950da93ffaa670439fbc31f0a3f95378bb3.zip | |
Adding metadata
Diffstat (limited to 'dev-python/python-fire/files/python-fire-inspect.patch')
| -rw-r--r-- | dev-python/python-fire/files/python-fire-inspect.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/dev-python/python-fire/files/python-fire-inspect.patch b/dev-python/python-fire/files/python-fire-inspect.patch new file mode 100644 index 000000000000..2d72eb0d9ed9 --- /dev/null +++ b/dev-python/python-fire/files/python-fire-inspect.patch @@ -0,0 +1,23 @@ +From: https://github.com/google/python-fire/commit/716bbc23d7eca949fdb682172283c8d18f742cb6 +From: David Bieber <david810@gmail.com> +Subject: [PATCH] Add Python 3.13 and 3.14 checking in build workflow (#623) +* Add Python 3.13 and 3.14 checking in build workflow + +--- a/fire/inspectutils.py 2026-08-13 22:49:35.213681329 +0200 ++++ b/fire/inspectutils.py 2026-08-13 22:51:08.232253224 +0200 +@@ -14,7 +14,6 @@ + + """Inspection utility functions for Python Fire.""" + +-import asyncio + import inspect + import sys + import types +@@ -343,6 +342,6 @@ + + def IsCoroutineFunction(fn): + try: +- return asyncio.iscoroutinefunction(fn) ++ return inspect.iscoroutinefunction(fn) + except: # pylint: disable=bare-except + return False |
