]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Rename __test() to _test().
authorGuido van Rossum <guido@python.org>
Mon, 19 Aug 1996 22:49:35 +0000 (22:49 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 19 Aug 1996 22:49:35 +0000 (22:49 +0000)
Lib/xdrlib.py

index 901a05bfea8ef5288716fb7d6f56ec0c95d6aa78..2c3e3360d7c0359963f6934e98985d4be0b265e7 100644 (file)
@@ -268,7 +268,7 @@ class Unpacker:
 
 \f
 # 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()