summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/xdrlib.py4
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()