Merge pull request #6899 from duzhuoshanwai/main Docs: Add quotes to prevent Zsh wildcard interpretation.
Recent Commits to requests
-
Merge pull request #6899 from duzhuoshanwai/main
-
Update advanced.rst
Update advanced.rst Add quotes to prevent Zsh wildcard interpretation.
-
Merge pull request #6897 from cjwatson/fix-test-certificates
Merge pull request #6897 from cjwatson/fix-test-certificates Add CA constraint to test CA
-
Regenerate test certificates
Regenerate test certificates Created using the following command with OpenSSL 3.4.0: for cert in expired mtls valid/server; do make -C tests/certs/$cert clean all done -
Add CA constraint to test CA
Add CA constraint to test CA Otherwise recent versions of OpenSSL reject it as an invalid CA certificate (at least once the test certificates are regenerated). Fixes: #6896
-
Merge pull request #6529 from anupam-arista/patch-1
Merge pull request #6529 from anupam-arista/patch-1
-
Update src/requests/models.py
Update src/requests/models.py Co-authored-by: Ian Stapleton Cordasco <graffatcolmingov@gmail.com>
-
Update models.py
Update models.py
-
Update src/requests/models.py
Update src/requests/models.py Co-authored-by: Ian Stapleton Cordasco <graffatcolmingov@gmail.com>
-
Merge branch 'psf:main' into patch-1
Merge branch 'psf:main' into patch-1
-
Merge pull request #6880 from jakobheine/td/remove-urlrequired-from-docs
Merge pull request #6880 from jakobheine/td/remove-urlrequired-from-docs docs(exceptions): Remove unused exception URLRequired from documentation
-
Merge pull request #6883 from psf/dependabot/github_actions/actions/s…
Merge pull request #6883 from psf/dependabot/github_actions/actions/setup-python-5.4.0 Bump actions/setup-python from 5.3.0 to 5.4.0
-
Bump actions/setup-python from 5.3.0 to 5.4.0
Bump actions/setup-python from 5.3.0 to 5.4.0 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5.3.0 to 5.4.0. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/0b93645e9fea7318ecaed2b359559ac225c90a2b...42375524e23c412d93fb67b49958b491fce71c38) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
-
docs(exceptions): Remove unused exception URLRequired from documentation
docs(exceptions): Remove unused exception URLRequired from documentation The documentation previously listed `requests.URLRequired` as a valid exception, suggesting it would be raised for invalid URLs. However, this exception has been dead code since commit ab27027 (2012) and is never actually raised. Instead, invalid URLs raise `MissingSchema`, `InvalidSchema`, or `InvalidURL`, none of which were documented. This commit removes `URLRequired` from the documentation to reflect the actual behavior and prevent confusion. Signed-off-by: jakobheine <me@jakobheine.de>