From 737ba52a8f76028f3e84671dcbd4e9cc4e160c8d Mon Sep 17 00:00:00 2001 From: "ChangBo Guo(gcb)" Date: Mon, 23 Nov 2015 17:59:05 +0800 Subject: [PATCH] networkutils: drop python 2.6 support Change-Id: I6363bb261e06d294b17b33985781c64bc4106b0f --- oslo_utils/netutils.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/oslo_utils/netutils.py b/oslo_utils/netutils.py index ca4de9b5..8e06344e 100644 --- a/oslo_utils/netutils.py +++ b/oslo_utils/netutils.py @@ -281,20 +281,6 @@ def _get_my_ipv4_address(): class _ModifiedSplitResult(parse.SplitResult): """Split results class for urlsplit.""" - # NOTE(dims): The functions below are needed for Python 2.6.x. - # We can remove these when we drop support for 2.6.x. - @property - def hostname(self): - netloc = self.netloc.split('@', 1)[-1] - host, port = parse_host_port(netloc) - return host - - @property - def port(self): - netloc = self.netloc.split('@', 1)[-1] - host, port = parse_host_port(netloc) - return port - def params(self, collapse=True): """Extracts the query parameters from the split urls components.