Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 12c00f79bc34f10cf0fff08df130c38c253a3742 authored by Tim Peters on 11 July 2006, 02:17:48 UTC
Whitespace normalization.
Tip revision: 12c00f7
_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="versioncheck"
_VERSION="1.0"
_URL="http://www.cwi.nl/~jack/versioncheck/curversion.txt"

try:
    _myverbose=VERBOSE
except NameError:
    _myverbose=1

pyversioncheck.versioncheck(_PACKAGE, _URL, _VERSION, verbose=_myverbose)
back to top