source: vendor/python/2.5/Tools/versioncheck/_checkversion.py

Last change on this file was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 430 bytes
RevLine 
[3225]1"""This file (which is sourced, not imported) checks the version of the
2"versioncheck" package. It is also an example of how to format your own
3_checkversion.py file"""
4
5import pyversioncheck
6
7_PACKAGE="versioncheck"
8_VERSION="1.0"
9_URL="http://www.cwi.nl/~jack/versioncheck/curversion.txt"
10
11try:
12 _myverbose=VERBOSE
13except NameError:
14 _myverbose=1
15
16pyversioncheck.versioncheck(_PACKAGE, _URL, _VERSION, verbose=_myverbose)
Note: See TracBrowser for help on using the repository browser.