diff options
Diffstat (limited to 'Lib/dos_8x3/test_gra.py')
-rwxr-xr-x | Lib/dos_8x3/test_gra.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/dos_8x3/test_gra.py b/Lib/dos_8x3/test_gra.py index b9607ac..21012d2 100755 --- a/Lib/dos_8x3/test_gra.py +++ b/Lib/dos_8x3/test_gra.py @@ -83,8 +83,8 @@ x = 3.1e4 print '1.1.3 String literals' -def assert(s): - if not s: raise TestFailed, 'see traceback' +##def assert(s): +## if not s: raise TestFailed, 'see traceback' x = ''; y = ""; assert(len(x) == 0 and x == y) x = '\''; y = "'"; assert(len(x) == 1 and x == y and ord(x) == 39) |