This commit was manufactured by cvs2svn to create tag 'r221c2'.
[python/dscho.git] / Mac / _checkversion.py
blob019d0efd011f884b895c526aff1fc0e25ae4fcdf
1 """This file (which is sourced, not imported) checks the version of the
2 "versioncheck" package. It is also an example of how to format your own
3 _checkversion.py file"""
5 import pyversioncheck
7 _PACKAGE="MacPython"
8 _VERSION="2.2.1"
9 _URL="http://www.cwi.nl/~jack/macpythonversion.txt"
11 try:
12 _myverbose=VERBOSE
13 except NameError:
14 _myverbose=1
16 pyversioncheck.versioncheck(_PACKAGE, _URL, _VERSION, verbose=_myverbose)