diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-01-08 01:17:26 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-01-08 01:17:26 (GMT) |
commit | 3a55f950a95f451e860190975ac43a163e48b820 (patch) | |
tree | 41b27eb7aa9d4866b812641cfad6301f2b18603f | |
parent | 15b838521fd5952415871c8f97c4481aa391dc10 (diff) | |
download | cpython-3a55f950a95f451e860190975ac43a163e48b820.zip cpython-3a55f950a95f451e860190975ac43a163e48b820.tar.gz cpython-3a55f950a95f451e860190975ac43a163e48b820.tar.bz2 |
18 isn't a prime (duh).
-rw-r--r-- | Lib/test/test_bufio.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_bufio.py b/Lib/test/test_bufio.py index 1a820d4..168a6b2 100644 --- a/Lib/test/test_bufio.py +++ b/Lib/test/test_bufio.py @@ -43,7 +43,7 @@ def try_one(s): # A pattern with prime length, to avoid simple relationships with # stdio buffer sizes. -primepat = "1234567890\00\01\02\03\04\05\06\07" +primepat = "1234567890\00\01\02\03\04\05\06" nullpat = "\0" * 1000 |