python-http_request 0.1.7__tar.gz → 0.1.7.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-http_request
3
- Version: 0.1.7
3
+ Version: 0.1.7.1
4
4
  Summary: Python http request utils.
5
5
  License: MIT
6
6
  License-File: LICENSE
@@ -374,7 +374,7 @@ def encode_multipart_data_async(
374
374
  pass
375
375
  elif isinstance(value, (str, UserString)):
376
376
  value = ensure_bytes_(value)
377
- elif isinstance(value, Iterable):
377
+ elif isinstance(value, (Iterable, AsyncIterable)):
378
378
  value = async_map(ensure_value, value)
379
379
  else:
380
380
  value = ensure_value(value)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "python-http_request"
3
- version = "0.1.7"
3
+ version = "0.1.7.1"
4
4
  description = "Python http request utils."
5
5
  authors = ["ChenyangGao <wosiwujm@gmail.com>"]
6
6
  license = "MIT"