From: Guido van Rossum Date: Mon, 19 Aug 1996 22:49:35 +0000 (+0000) Subject: Rename __test() to _test(). X-Git-Tag: v1.4b3~111 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=72fba794d61abfe5e1fc9b9412b2f7b48dd7acfd;p=thirdparty%2FPython%2Fcpython.git Rename __test() to _test(). --- diff --git a/Lib/xdrlib.py b/Lib/xdrlib.py index 901a05bfea8e..2c3e3360d7c0 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()