diff options
author | Guido van Rossum <guido@python.org> | 1996-08-19 22:49:35 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-08-19 22:49:35 (GMT) |
commit | 72fba794d61abfe5e1fc9b9412b2f7b48dd7acfd (patch) | |
tree | 823c45bcd8c225edcfa5339df6440b2cd277dff3 /Lib/xdrlib.py | |
parent | 731630b5bf785ccff76ac623278b9b174ca13fe9 (diff) | |
download | cpython-72fba794d61abfe5e1fc9b9412b2f7b48dd7acfd.zip cpython-72fba794d61abfe5e1fc9b9412b2f7b48dd7acfd.tar.gz cpython-72fba794d61abfe5e1fc9b9412b2f7b48dd7acfd.tar.bz2 |
Rename __test() to _test().
Diffstat (limited to 'Lib/xdrlib.py')
-rw-r--r-- | Lib/xdrlib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/xdrlib.py b/Lib/xdrlib.py index 901a05b..2c3e336 100644 --- a/Lib/xdrlib.py +++ b/Lib/xdrlib.py @@ -268,7 +268,7 @@ class Unpacker: # test suite -def __test(): +def _test(): p = Packer() packtest = [ (p.pack_uint, (9,)), @@ -321,4 +321,4 @@ def __test(): count = count + 1 if __name__ == '__main__': - __test() + _test() |