Staging
v0.5.1
https://github.com/python/cpython
Revision 38d8f4e1c23e9779bbc59efa585cdb26a0966321 authored by Guido van Rossum on 11 April 1998, 01:22:34 UTC, committed by Guido van Rossum on 11 April 1998, 01:22:34 UTC
1 parent c74521a
Raw File
Tip revision: 38d8f4e1c23e9779bbc59efa585cdb26a0966321 authored by Guido van Rossum on 11 April 1998, 01:22:34 UTC
New version doesn't require REV1 capability.
Tip revision: 38d8f4e
_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="1.5b3"
_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