Fix SafeConfigParser DeprecationWarning in Python 3.2
SafeConfigParser is deprecated in Python 3.2 and log warning like " DeprecationWarning: The SafeConfigParser class has been renamed to ConfigParser in Python 3.2. This alias will be removed in future versions. Use ConfigParser directly instead." So use ConfigParser in Python 3.2+. Closes-Bug: #1618666 Change-Id: I225bde35b18bd410f3fe9d415759d1def0a91aca
This commit is contained in:
parent
9149414fd8
commit
f8c1ee3950
@ -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)
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user