test -> main

This commit is contained in:
Guido van Rossum 1995-04-27 21:28:53 +00:00
parent 547e8d8c0f
commit deb627c06e
1 changed files with 2 additions and 2 deletions

View File

@ -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()