Rename __test() to _test().

This commit is contained in:
Guido van Rossum 1996-08-19 22:49:35 +00:00
parent 731630b5bf
commit 72fba794d6
1 changed files with 2 additions and 2 deletions

View File

@ -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()