Staging
v0.8.1
https://github.com/python/cpython
Revision f1c9869ab016f041d2ae9e63b1e17983cc8a2826 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.

Also fixed a number of mostly cosmetic markup errors.
1 parent 644a08c
Raw File
Tip revision: f1c9869ab016f041d2ae9e63b1e17983cc8a2826 authored by Fred Drake on 22 July 2003, 01:09:22 UTC
Avoid a 301 permanent redirect.
Tip revision: f1c9869
_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