Staging
v0.5.1
https://github.com/python/cpython
Revision c8dc7c320daa68a39f26f1504da1c4beeea94424 authored by Andrew M. Kuchling on 25 September 2003, 18:26:06 UTC, committed by Andrew M. Kuchling on 25 September 2003, 18:26:06 UTC
1 parent 2a15d9a
Raw File
Tip revision: c8dc7c320daa68a39f26f1504da1c4beeea94424 authored by Andrew M. Kuchling on 25 September 2003, 18:26:06 UTC
[Bug #811681] The asynchat documentation would also apply to the 2.2 version of the module, but the docs aren't included. This adds a copy of libasynchat.tex.
Tip revision: c8dc7c3
_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.2.2"
_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