Staging
v0.5.1
https://github.com/python/cpython
Revision b3d6be9d9353a5ace956ee22bc29e800a002c332 authored by Tim Peters on 11 March 2001, 08:06:25 UTC, committed by Tim Peters on 11 March 2001, 08:06:25 UTC
1 parent 1eb0a92
Raw File
Tip revision: b3d6be9d9353a5ace956ee22bc29e800a002c332 authored by Tim Peters on 11 March 2001, 08:06:25 UTC
Windows: Fallout from renaming the pydoc file.
Tip revision: b3d6be9
_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.0"
_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