Staging
v0.5.1
https://github.com/python/cpython
Revision 9e83cae3e06104e434c50ee9d89dbd5be8ad1a77 authored by Guido van Rossum on 15 January 2002, 22:09:55 UTC, committed by Guido van Rossum on 15 January 2002, 22:09:55 UTC
1 parent ce76e0a
Raw File
Tip revision: 9e83cae3e06104e434c50ee9d89dbd5be8ad1a77 authored by Guido van Rossum on 15 January 2002, 22:09:55 UTC
Found another place where the copyrgiht date had to be fixed.
Tip revision: 9e83cae
_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.1.1"
_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