Add future 0.18.2
This commit is contained in:
8
lib/future/moves/configparser.py
Normal file
8
lib/future/moves/configparser.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from __future__ import absolute_import
|
||||
|
||||
from future.utils import PY2
|
||||
|
||||
if PY2:
|
||||
from ConfigParser import *
|
||||
else:
|
||||
from configparser import *
|
Reference in New Issue
Block a user