Staging
v0.5.1
https://github.com/python/cpython
Revision 241aa8b1526d8904b6688a7c469ba7320f7127bf authored by Guido van Rossum on 14 October 2002, 12:35:53 UTC, committed by Guido van Rossum on 14 October 2002, 12:35:53 UTC
1 parent 2339384
Raw File
Tip revision: 241aa8b1526d8904b6688a7c469ba7320f7127bf authored by Guido van Rossum on 14 October 2002, 12:35:53 UTC
Bump release version to 2.2.2 -- the final release is imminent.
Tip revision: 241aa8b
_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.2.1"
_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