Staging
v0.5.1
https://github.com/python/cpython
Revision dffeaf473224ca425f01653a6c52a6fa8ed9592b authored by Jack Jansen on 23 July 2003, 10:49:17 UTC, committed by Jack Jansen on 23 July 2003, 10:49:17 UTC
to the name change of Python.app/Contents/MacOS/python to
Python.app/Contents/MacOS/Python. Fixes #776116.
1 parent 5943b4a
Raw File
Tip revision: dffeaf473224ca425f01653a6c52a6fa8ed9592b authored by Jack Jansen on 23 July 2003, 10:49:17 UTC
Scripts runs with pythonw no longer had full window manager access due
Tip revision: dffeaf4
_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