diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-09-26 10:29:16 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-09-26 10:29:16 -0700 |
commit | a697c39d79fab4bdebfc37562da454cb3fe55fd4 (patch) | |
tree | eb3701f05ea5716ee86d98085590abb526271ebe /tests | |
parent | ebfb4a9f2d9735f74e0c65dc1771849bbe178b63 (diff) | |
parent | 5f726b5af429df683398c454f6cbd0f97228a9d5 (diff) |
Merge pull request #1669 from ngld/fix-sscanf-whitespace
Fix #1668: whiteSpace in _scanString should use only char codes as keys
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index d1d3bab0..d59fae40 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -1788,7 +1788,7 @@ f6: nan int xx, yy, zz; char s[32]; - int cc = sscanf("abc_10.b1_xyz_543_defg", "abc_%d.%2x_xyz_%3d_%3s", &xx, &yy, &zz, s); + int cc = sscanf("abc_10.b1_xyz9_543_defg", "abc_%d.%2x_xyz9_%3d_%3s", &xx, &yy, &zz, s); printf("%d:%d,%d,%d,%s\\n", cc, xx, yy, zz, s); printf("%d\\n", argc); |