diff options
author | Guido van Rossum <guido@python.org> | 1995-04-27 21:28:53 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-04-27 21:28:53 (GMT) |
commit | deb627c06e3089fc9bbeb44564213226e5acfa9e (patch) | |
tree | 8952d69bf402b5c19eb35969d1d87f5b44e1670f | |
parent | 547e8d8c0f480b2647eeb2453f1fb9c77db42d0e (diff) | |
download | cpython-deb627c06e3089fc9bbeb44564213226e5acfa9e.zip cpython-deb627c06e3089fc9bbeb44564213226e5acfa9e.tar.gz cpython-deb627c06e3089fc9bbeb44564213226e5acfa9e.tar.bz2 |
test -> main
-rwxr-xr-x | Demo/pdist/rcvs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Demo/pdist/rcvs.py b/Demo/pdist/rcvs.py index 3bd8e8b..f4795a4 100755 --- a/Demo/pdist/rcvs.py +++ b/Demo/pdist/rcvs.py @@ -234,7 +234,7 @@ def sumfile(file): return md5.new(open(file).read()).digest() -def test(): +def main(): import sys import getopt from rcsclient import openrcsclient @@ -269,4 +269,4 @@ def test(): x.report() if __name__ == "__main__": - test() + main() |