You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
173 B
10 lines
173 B
12 years ago
|
import sys
|
||
|
|
||
|
if sys.version_info[0] == 2:
|
||
|
import ConfigParser as configparser
|
||
|
import StringIO as io
|
||
|
input = raw_input
|
||
|
else:
|
||
|
import configparser
|
||
|
import io
|