Skip to content

Commit 90640fb

Browse files
committed
userconfig: Add some minor comments
1 parent 635b52a commit 90640fb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

spyderlib/userconfig.py

+3
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,22 @@
1313

1414
from __future__ import print_function
1515

16+
# Std imports
1617
import os
1718
import re
1819
import os.path as osp
1920
import shutil
2021
import time
2122

23+
# Local imports
2224
from spyderlib import __version__
2325
from spyderlib.baseconfig import (DEV, TEST, get_module_source_path,
2426
get_home_dir)
2527
from spyderlib.utils.programs import check_version
2628
from spyderlib.py3compat import configparser as cp
2729
from spyderlib.py3compat import PY2, is_text_string, to_text_string
2830

31+
# Std imports for Python 2
2932
if PY2:
3033
import codecs
3134

0 commit comments

Comments
 (0)