Rename __test() to _test().
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 @@
 
 
 # test suite
-def __test():
+def _test():
     p = Packer()
     packtest = [
 	(p.pack_uint,    (9,)),
@@ -321,4 +321,4 @@
 	count = count + 1
 
 if __name__ == '__main__':
-    __test()
+    _test()