diff options
author | Ka-Ping Yee <ping@zesty.ca> | 2001-01-24 17:19:08 (GMT) |
---|---|---|
committer | Ka-Ping Yee <ping@zesty.ca> | 2001-01-24 17:19:08 (GMT) |
commit | fa004ad36c86f4af406cfa3a84ec8b6cb391e6dd (patch) | |
tree | 61544d6bc2f118d4187cfc4887711f728d0fb7cf /Lib/test/output/test_cfgparser | |
parent | 726b78ecb8660278399abaf36f98dec56ecf1271 (diff) | |
download | cpython-fa004ad36c86f4af406cfa3a84ec8b6cb391e6dd.zip cpython-fa004ad36c86f4af406cfa3a84ec8b6cb391e6dd.tar.gz cpython-fa004ad36c86f4af406cfa3a84ec8b6cb391e6dd.tar.bz2 |
Show '\011', '\012', and '\015' as '\t', '\n', '\r' in strings.
Switch from octal escapes to hex escapes for other nonprintable characters.
Diffstat (limited to 'Lib/test/output/test_cfgparser')
-rw-r--r-- | Lib/test/output/test_cfgparser | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/test/output/test_cfgparser b/Lib/test/output/test_cfgparser index 2849905..8d06816 100644 --- a/Lib/test/output/test_cfgparser +++ b/Lib/test/output/test_cfgparser @@ -24,18 +24,18 @@ Value interpolation too deeply recursive: Testing for parsing errors... Caught expected exception: File contains parsing errors: <???> - [line 2]: ' extra-spaces: splat\012' + [line 2]: ' extra-spaces: splat\n' Caught expected exception: File contains parsing errors: <???> - [line 2]: ' extra-spaces= splat\012' + [line 2]: ' extra-spaces= splat\n' Caught expected exception: File contains parsing errors: <???> - [line 2]: 'option-without-value\012' + [line 2]: 'option-without-value\n' Caught expected exception: File contains parsing errors: <???> - [line 2]: ':value-without-option-name\012' + [line 2]: ':value-without-option-name\n' Caught expected exception: File contains parsing errors: <???> - [line 2]: '=value-without-option-name\012' + [line 2]: '=value-without-option-name\n' Caught expected exception: File contains no section headers. file: <???>, line: 1 -'No Section!\012' +'No Section!\n' Testing query interface... [] |