Staging
v0.5.1
https://github.com/python/cpython
Revision 4b5db8e3feae6db863bf4f1d71fc67344c0a3cde authored by Anthony Baxter on 02 October 2003, 12:50:18 UTC, committed by Anthony Baxter on 02 October 2003, 12:50:18 UTC
1 parent 75c1f89
Raw File
Tip revision: 4b5db8e3feae6db863bf4f1d71fc67344c0a3cde authored by Anthony Baxter on 02 October 2003, 12:50:18 UTC
tagging for tomorrows release
Tip revision: 4b5db8e
_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