Merge "Fix SafeConfigParser DeprecationWarning in Python 3.2"

This commit is contained in:
Jenkins 2016-09-20 19:09:11 +00:00 committed by Gerrit Code Review
commit 7e8ed21e40
2 changed files with 12 additions and 2 deletions

View File

@ -21,6 +21,7 @@ It is used via a single directive in the .rst file
"""
import re
import sys
from six.moves import configparser
@ -158,7 +159,11 @@ class FeatureMatrixDirective(rst.Directive):
:returns: Matrix instance
"""
cfg = configparser.SafeConfigParser()
# SafeConfigParser was deprecated in Python 3.2
if sys.version_info >= (3, 2):
cfg = configparser.ConfigParser()
else:
cfg = configparser.SafeConfigParser()
env = self.state.document.settings.env
filename = self.arguments[0]
rel_fpath, fpath = env.relfn2path(filename)

View File

@ -23,6 +23,7 @@ It is used via a single directive in the .rst file
"""
import re
import sys
import six
from six.moves import configparser
@ -129,7 +130,11 @@ class SupportMatrixDirective(rst.Directive):
:returns: SupportMatrix instance
"""
cfg = configparser.SafeConfigParser()
# SafeConfigParser was deprecated in Python 3.2
if sys.version_info >= (3, 2):
cfg = configparser.ConfigParser()
else:
cfg = configparser.SafeConfigParser()
env = self.state.document.settings.env
fname = self.arguments[0]
rel_fpath, fpath = env.relfn2path(fname)