Staging
v0.5.1
https://github.com/python/cpython
Revision 89ae2b9f071cb78322fd1df1571027cd7159a698 authored by Guido van Rossum on 29 March 1999, 19:59:32 UTC, committed by Guido van Rossum on 29 March 1999, 19:59:32 UTC
1 parent 4958f9a
Raw File
Tip revision: 89ae2b9f071cb78322fd1df1571027cd7159a698 authored by Guido van Rossum on 29 March 1999, 19:59:32 UTC
Test protection against picling to/from closed (real) file.
Tip revision: 89ae2b9
_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="1.5.2b1"
_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