Staging
v0.5.1
https://github.com/python/cpython
Revision 7f9cbf10377b7554f8032519d4e8c89d0e0e8364 authored by Fred Drake on 29 April 2003, 13:55:20 UTC, committed by Fred Drake on 29 April 2003, 13:55:20 UTC
- fix a typo and one markup nit
- normalize whitespace
1 parent 9a3638f
Raw File
Tip revision: 7f9cbf10377b7554f8032519d4e8c89d0e0e8364 authored by Fred Drake on 29 April 2003, 13:55:20 UTC
- clean up some extra punctuation hidden in indexing markup
Tip revision: 7f9cbf1
_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.2"
_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