mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
81a5f0b965
* configparser read_string is ok * support replace() and strip() for StdData.String() * add file and test of configparser
16 lines
285 B
Python
16 lines
285 B
Python
import configparser
|
|
config = configparser.ConfigParser()
|
|
config.read_string('\
|
|
[DEFAULT]\n\
|
|
ServerAliveInterval = 45\n\
|
|
Compression = yes\n\
|
|
CompressionLevel = 9\n\
|
|
ForwardX11 = yes\n\
|
|
\n\
|
|
[bitbucket.org]\n\
|
|
User = hg\n\
|
|
\n\
|
|
[topsecret.server.com]\n\
|
|
Port = 50022\n\
|
|
ForwardX11 = no')
|