This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Potential bug in the "request" package.
Type: behavior Stage: resolved
Components: Extension Modules Versions: Python 3.9
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: edgj4718, xtreak
Priority: normal Keywords:

Created on 2021-04-23 06:27 by edgj4718, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
bug.PNG edgj4718, 2021-04-23 06:27 Please have a look at the empty space in the end.
Messages (2)
msg391658 - (view) Author: (edgj4718) Date: 2021-04-23 06:27
Hello there,

I am creating a client application with python. This application consists in extracting some data from an API and doing something with it. Anyway, I added a space in the end of the URL where I am supposed to have the data, and the API did not send any data as it probably the new URL with the added space was the issue. I think this is a bug and the URL should be checked from any possible empty strings, especially in the end and in the start of the URL.
msg391660 - (view) Author: Karthikeyan Singaravelan (xtreak) * (Python committer) Date: 2021-04-23 06:45
The tracker is for issues related to CPython. requests is not part of stdlib so I am closing this as a third party issue. It seems this was already raised in requests repo https://github.com/psf/requests/issues/3017 .
History
Date User Action Args
2022-04-11 14:59:44adminsetgithub: 88085
2021-04-23 06:45:11xtreaksetstatus: open -> closed

nosy: + xtreak
messages: + msg391660

resolution: third party
stage: resolved
2021-04-23 06:27:47edgj4718create