summaryrefslogtreecommitdiff
path: root/Lib/xdrlib.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-08-19 22:49:35 +0000
committerGuido van Rossum <guido@python.org>1996-08-19 22:49:35 +0000
commitd501d5e25cbb3915147dcf5a87fe67ffe1a78e35 (patch)
treec9c406617479e40122d3adb29d50aca9a36d3e2b /Lib/xdrlib.py
parenta529c026d671a23588d8fb69e60e608ddfa9051c (diff)
downloadcpython-d501d5e25cbb3915147dcf5a87fe67ffe1a78e35.tar.gz
Rename __test() to _test().
Diffstat (limited to 'Lib/xdrlib.py')
-rw-r--r--Lib/xdrlib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/xdrlib.py b/Lib/xdrlib.py
index 901a05bfea..2c3e3360d7 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()