commit | 1eb79cfd6dfc5bb96a180fefc871fa1dc600a510 | [log] [tgz] |
---|---|---|
author | Brett Cannon <bcannon@gmail.com> | Thu Jul 26 03:19:46 2007 +0000 |
committer | Brett Cannon <bcannon@gmail.com> | Thu Jul 26 03:19:46 2007 +0000 |
tree | 0dd003abfbdf3a9bd305f53d924ded366ec7a3a9 | |
parent | d24fffe7c67c2097aa33e04498dc6b3ae0cc17ab [diff] |
Move xdrlib over to the bytes type.
diff --git a/Lib/test/test_xdrlib.py b/Lib/test/test_xdrlib.py index d0fb1e5..44d5a82 100644 --- a/Lib/test/test_xdrlib.py +++ b/Lib/test/test_xdrlib.py
@@ -8,8 +8,8 @@ def test_xdr(self): p = xdrlib.Packer() - s = 'hello world' - a = ['what', 'is', 'hapnin', 'doctor'] + s = b'hello world' + a = [b'what', b'is', b'hapnin', b'doctor'] p.pack_int(42) p.pack_uint(9)