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.
- {python_http_request-0.1.0 → python_http_request-0.1.0.1}/PKG-INFO +1 -1
- {python_http_request-0.1.0 → python_http_request-0.1.0.1}/http_request/__init__.py +3 -0
- {python_http_request-0.1.0 → python_http_request-0.1.0.1}/pyproject.toml +1 -1
- {python_http_request-0.1.0 → python_http_request-0.1.0.1}/LICENSE +0 -0
- {python_http_request-0.1.0 → python_http_request-0.1.0.1}/http_request/py.typed +0 -0
- {python_http_request-0.1.0 → python_http_request-0.1.0.1}/readme.md +0 -0
|
@@ -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):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|