Staging
v0.5.1
https://github.com/python/cpython
Revision 644a08c73542d2c602af5201aac86f29c5fa925b authored by Fred Drake on 22 July 2003, 01:09:22 UTC, committed by Fred Drake on 22 July 2003, 01:09:22 UTC
Part of SF patch #773007.
1 parent 700c890
Raw File
Tip revision: 644a08c73542d2c602af5201aac86f29c5fa925b authored by Fred Drake on 22 July 2003, 01:09:22 UTC
Avoid a 301 permanent redirect.
Tip revision: 644a08c
_checkversion.py
"""This file (which is sourced, not imported) checks the version of the
"versioncheck" package. It is also an example of how to format your own
_checkversion.py file"""

import pyversioncheck

_PACKAGE="MacPython"
_VERSION="2.3a2"
_URL="http://www.cwi.nl/~jack/macpythonversion.txt"

try:
	_myverbose=VERBOSE
except NameError:
	_myverbose=1
	
pyversioncheck.versioncheck(_PACKAGE, _URL, _VERSION, verbose=_myverbose)
back to top