Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix missing HTTPConnection._set_hostport() in python 3.8
Fixes #1650 Python 3.8 introduces some breaking changes with regards to `HTTPConnection`'s internal structure. One of them is replacing former `_set_hostport()` method by `_get_hostport()` with slightly different usage. This commit therefore re-adds a `_set_hostport()` method to Package Control's `ValidatingHTTPSConnection` class in order to maintain compatibility with both ST3 (py 3.3) and ST4 (py 3.8).
- Loading branch information
Should the function parameters remain unused?