forked from pool/python-aiohttp
* Fixed file uploads failing with HTTP 422 errors when
encountering 307/308 redirects, and 301/302 redirects for
non-POST methods, by preserving the request body when
appropriate per RFC 9110 -- by :user:`bdraco`. Related issues
and pull requests on GitHub: :issue:`11270`.
* Fixed :py:meth:`ClientSession.close()
<aiohttp.ClientSession.close>` hanging indefinitely when
using HTTPS requests through HTTP proxies -- by
:user:`bdraco`. Related issues and pull requests on GitHub:
:issue:`11273`.
* Bumped minimum version of aiosignal to 1.4+ to resolve typing
issues -- by :user:`Dreamsorcerer`. Related issues and pull
requests on GitHub: :issue:`11280`.
* Added initial trailer parsing logic to Python HTTP parser --
by :user:`Dreamsorcerer`. Related issues and pull requests on
GitHub: :issue:`11269`.
* Clarified exceptions raised by WebSocketResponse.send_frame
et al. -- by :user:`DoctorJohn`. Related issues and pull
requests on GitHub: :issue:`11234`.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aiohttp?expand=0&rev=149
16 lines
822 B
Diff
16 lines
822 B
Diff
diff -rup aiohttp-3.10.5.orig/tests/test_circular_imports.py aiohttp-3.10.5/tests/test_circular_imports.py
|
|
--- aiohttp-3.10.5.orig/tests/test_circular_imports.py 2024-08-19 15:18:15.000000000 -0400
|
|
+++ aiohttp-3.10.5/tests/test_circular_imports.py 2024-09-04 08:18:49.702469018 -0400
|
|
@@ -111,6 +111,11 @@ def test_no_warnings(import_path: str) -
|
|
# `gunicorn.util`.
|
|
"-W", "ignore:pkg_resources is deprecated as an API:"
|
|
"DeprecationWarning",
|
|
+ # UserWarning about importing aiohttp from a second sys.path
|
|
+ # location under the abuild home directory when running tests
|
|
+ # under the build service
|
|
+ "-W", "ignore:Module aiohttp was already imported from "
|
|
+ "/home/abuild/rpmbuild/BUILDROOT",
|
|
"-c", f"import {import_path!s}",
|
|
# fmt: on
|
|
)
|