Staging
v0.5.1
https://github.com/python/cpython
Revision d30042d45f83ded3a149ad2a29982cd6fa478b0c authored by Fred Drake on 03 February 2005, 17:29:32 UTC, committed by Fred Drake on 03 February 2005, 17:29:32 UTC
1 parent 018a548
Raw File
Tip revision: d30042d45f83ded3a149ad2a29982cd6fa478b0c authored by Fred Drake on 03 February 2005, 17:29:32 UTC
fix XMLFilterBase.resolveEntity() so the caller gets the result
Tip revision: d30042d
_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