diff options
author | Guido van Rossum <guido@python.org> | 2000-09-05 04:49:50 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-09-05 04:49:50 (GMT) |
commit | e2ab1451cf4f5fb4b3ce6cb2e1598fab4a2f9eed (patch) | |
tree | 4ae42008f3ae9b480550c4a542fe08a91af6916e /Lib/dos-8x3/test_mma.py | |
parent | 10912854a29185fe41eba93be6e87bdd75278acb (diff) | |
download | cpython-e2ab1451cf4f5fb4b3ce6cb2e1598fab4a2f9eed.zip cpython-e2ab1451cf4f5fb4b3ce6cb2e1598fab4a2f9eed.tar.gz cpython-e2ab1451cf4f5fb4b3ce6cb2e1598fab4a2f9eed.tar.bz2 |
The usual.
Diffstat (limited to 'Lib/dos-8x3/test_mma.py')
-rw-r--r-- | Lib/dos-8x3/test_mma.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/dos-8x3/test_mma.py b/Lib/dos-8x3/test_mma.py index 73c1a15..449c674 100644 --- a/Lib/dos-8x3/test_mma.py +++ b/Lib/dos-8x3/test_mma.py @@ -40,7 +40,7 @@ def test_both(): assert m[0] == '3' print ' Contents of first 3 bytes:', repr(m[0:3]) assert m[0:3] == '3\0\0' - print ' Contents of second page:', m[PAGESIZE-1 : PAGESIZE + 7] + print ' Contents of second page:', repr(m[PAGESIZE-1 : PAGESIZE + 7]) assert m[PAGESIZE-1 : PAGESIZE + 7] == '\0foobar\0' m.flush() @@ -119,4 +119,3 @@ def test_both(): print ' Test passed' test_both() - |