StarlingX NFVI Orchestration
Go to file
Al Bailey 181d7b4832 Update urllib2 to be python3 compatable.
This change has no code impact on python2
There are multiple six.moves modules depending on which
urllib2 component was being used.
    Classes were verified by print(class_name)
    Methods were verified using help(method_name)

Error codes:
urllib2.URLError -> from six.moves.urllib.error import URLError
(verified as the same)
urllib2.HTTPError from six.moves.urllib.error import HTTPError
(verified as the same)

Functionality:
old: urllib2.HTTPHandler
new: from six.moves.urllib.request import HTTPHandler
verification: print(HTTPHandler)
result:  urllib2.HTTPHandler

old: urllib2.Request
new: from six.moves.urllib.request import Request
verification: print(Request)
result:  urllib2.Request

old: urllib2.build_opener
new: from six.moves.urllib.request import build_opener
verification: help(build_opener)
result:  Help on function build_opener in module urllib2:

old: urllib2.install_opener
new: from six.moves.urllib.request import install_opener
verification: help(install_opener)
result: Help on function install_opener in module urllib2:

Story: 2004241
Task: 28069
Change-Id: Iec3a9e7b20c9d186313dfa4e152064283236603a
Signed-off-by: Al Bailey <Al.Bailey@windriver.com>
2018-11-23 08:54:24 -06:00
api-ref/source [Doc] openstackdocstheme starlingxdocs theme 2018-10-22 14:37:37 +00:00
devstack Add Devstack plugin 2018-11-20 17:37:47 -06:00
doc [Doc] openstackdocstheme starlingxdocs theme 2018-10-22 14:37:37 +00:00
guest-agent free memory and file handle when it is no longer in use 2018-11-15 13:40:50 +08:00
guest-client Rename mwa-* subdirectories to match the git repo name 2018-07-03 16:19:19 -04:00
guest-comm ensure string "null-terminated" and fix memory overwrite risk. 2018-11-16 05:18:16 +00:00
mtce-guest Decouple Guest-server/agent from stx-metal 2018-09-19 11:38:04 -04:00
nfv Update urllib2 to be python3 compatable. 2018-11-23 08:54:24 -06:00
nova-api-proxy Create stx-nfv docker image directives file 2018-11-14 15:11:44 -06:00
releasenotes [Doc] openstackdocstheme starlingxdocs theme 2018-10-22 14:37:37 +00:00
.gitignore [Doc] OpenStack API Reference Guide 2018-09-25 14:01:33 -07:00
.gitreview Add .gitreview 2018-05-31 07:36:51 -07:00
.zuul.yaml [Doc] openstackdocstheme starlingxdocs theme 2018-10-22 14:37:37 +00:00
CONTRIBUTORS.wrs StarlingX open source release updates 2018-05-31 07:36:51 -07:00
LICENSE StarlingX open source release updates 2018-05-31 07:36:51 -07:00
README.rst StarlingX open source release updates 2018-05-31 07:36:51 -07:00
centos_guest_image.inc Split image.inc across git repos 2018-08-17 16:07:03 +00:00
centos_guest_image_rt.inc Split image.inc across git repos 2018-08-17 16:07:03 +00:00
centos_iso_image.inc Decouple Guest-server/agent from stx-metal 2018-09-19 11:38:04 -04:00
centos_pike_docker_images.inc Create stx-nfv docker image directives file 2018-11-14 15:11:44 -06:00
centos_pike_wheels.inc Rename centos_wheels.inc to centos_pike_wheels.inc 2018-11-14 15:09:47 -06:00
centos_pkg_dirs Decouple Guest-server/agent from stx-metal 2018-09-19 11:38:04 -04:00
requirements.txt Adding py27 for nfv 2018-07-10 10:18:28 -05:00
test-requirements.txt Adding py27 for nfv 2018-07-10 10:18:28 -05:00
tox.ini fix tox python3 overrides 2018-10-05 10:57:02 +00:00

README.rst

stx-nfv

StarlingX NFVI Orchestration