Kaydet (Commit) 72fba794 authored tarafından Guido van Rossum's avatar Guido van Rossum

Rename __test() to _test().

üst 731630b5
...@@ -268,7 +268,7 @@ class Unpacker: ...@@ -268,7 +268,7 @@ class Unpacker:
# test suite # test suite
def __test(): def _test():
p = Packer() p = Packer()
packtest = [ packtest = [
(p.pack_uint, (9,)), (p.pack_uint, (9,)),
...@@ -321,4 +321,4 @@ def __test(): ...@@ -321,4 +321,4 @@ def __test():
count = count + 1 count = count + 1
if __name__ == '__main__': if __name__ == '__main__':
__test() _test()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment