summaryrefslogtreecommitdiff
path: root/dev-python/httpx
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-07-10 03:04:33 -0500
committerroot <root@alpha.trunkmasters.com>2026-07-10 03:04:33 -0500
commited2e0f29bf24219e96271574d9c99c971dff3698 (patch)
treeaa4cdcbf1a9384d5495104e034018b2d6fadcaac /dev-python/httpx
parenta96a971c845e2cd3ffad3b8f63558c6408897f0a (diff)
downloadbaldeagleos-repo-ed2e0f29bf24219e96271574d9c99c971dff3698.tar.gz
baldeagleos-repo-ed2e0f29bf24219e96271574d9c99c971dff3698.tar.xz
baldeagleos-repo-ed2e0f29bf24219e96271574d9c99c971dff3698.zip
Adding metadata
Diffstat (limited to 'dev-python/httpx')
-rw-r--r--dev-python/httpx/files/httpx-0.27.0-opt-trio.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/dev-python/httpx/files/httpx-0.27.0-opt-trio.patch b/dev-python/httpx/files/httpx-0.27.0-opt-trio.patch
deleted file mode 100644
index 6c2c9e67255f..000000000000
--- a/dev-python/httpx/files/httpx-0.27.0-opt-trio.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff --git a/tests/concurrency.py b/tests/concurrency.py
-index a8ed558..d5ce803 100644
---- a/tests/concurrency.py
-+++ b/tests/concurrency.py
-@@ -5,11 +5,11 @@ Async environment-agnostic concurrency utilities that are only used in tests.
- import asyncio
-
- import sniffio
--import trio
-
-
- async def sleep(seconds: float) -> None:
- if sniffio.current_async_library() == "trio":
-+ import trio
- await trio.sleep(seconds) # pragma: no cover
- else:
- await asyncio.sleep(seconds)