bpo-33034: Improve exception message when cast fails for {Parse,Split}Result.port (GH-6078)

This commit is contained in:
Matt Eaton 2018-03-20 01:41:37 -05:00 committed by Berker Peksag
parent 7389fd935c
commit 2cb4661707
3 changed files with 18 additions and 1 deletions

View file

@ -0,0 +1,3 @@
Providing an explicit error message when casting the port property to anything
that is not an integer value using ``urlparse()`` and ``urlsplit()``.
Patch by Matt Eaton.