python-http_request 0.1.0__tar.gz → 0.1.0.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.1
2
2
  Name: python-http_request
3
- Version: 0.1.0
3
+ Version: 0.1.0.1
4
4
  Summary: Python http response utils.
5
5
  Home-page: https://github.com/ChenyangGao/python-modules/tree/main/python-http_request
6
6
  License: MIT
@@ -143,10 +143,13 @@ def urlencode(
143
143
  yield "="
144
144
  if v is True:
145
145
  yield "true"
146
+ continue
146
147
  elif v is False:
147
148
  yield "false"
149
+ continue
148
150
  elif v is None:
149
151
  yield "null"
152
+ continue
150
153
  elif isinstance(v, (str, UserString)):
151
154
  pass
152
155
  elif isinstance(v, Buffer):
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "python-http_request"
3
- version = "0.1.0"
3
+ version = "0.1.0.1"
4
4
  description = "Python http response utils."
5
5
  authors = ["ChenyangGao <wosiwujm@gmail.com>"]
6
6
  license = "MIT"