It's already nicely packaged, and allows us to write portable code
Details
Details
- Reviewers
mmodell - Group Reviewers
Release-Engineering-Team - Commits
- rMSCA7d4d202c234e: Use backported ConfigParser from 3.2+
- Patch without arc
- git checkout -b D838 && curl -L https://phabricator.wikimedia.org/D838?download=true | git apply
Tests all still worked for me
Diff Detail
Diff Detail
- Repository
- rMSCA Scap
- Lint
Automatic diff as part of commit; lint not applicable. - Unit
Automatic diff as part of commit; unit tests not applicable.
Comment Actions
AIUI, Python 2 has:
ConfigParser.ConfigParser
Python 3:
configparser.ConfigParser
The latter was backported to Python 2. While it's functionally identical, from reading around it sounds like this helps us future-proof ourselves. Maybe it's pointless tho.