Staging
v0.5.1
https://github.com/python/cpython
Revision 01553706bfcb7a5613809eabe726cd7d2f674ba8 authored by Fred Drake on 05 April 1999, 19:46:21 UTC, committed by Fred Drake on 05 April 1999, 19:46:21 UTC
more references to other modules in the text hyperlinks for the HTML and
PDF versions.
1 parent 766e0cb
Raw File
Tip revision: 01553706bfcb7a5613809eabe726cd7d2f674ba8 authored by Fred Drake on 05 April 1999, 19:46:21 UTC
Added a few items to the "See also" sections at Guido's prompting. Made
Tip revision: 0155370
_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.5.2b1"
_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