Staging
v0.5.1
https://github.com/python/cpython
Revision 317acd0308a4f539add7660b376b44554af7e28f authored by Jeremy Hylton on 18 December 2001, 00:00:15 UTC, committed by Jeremy Hylton on 18 December 2001, 00:00:15 UTC
Fix for sibling nodes that define the same free variable, rev. 1.6.
Handle private names, rev. 1.7.
Fix bug in handling of statements like "l[x:y] = 2", reb. 1.8.
Fix symbol problem with slice assignment, rev. 1.9.
1 parent 2dfc9a3
Raw File
Tip revision: 317acd0308a4f539add7660b376b44554af7e28f authored by Jeremy Hylton on 18 December 2001, 00:00:15 UTC
Backport bugfixes since rev 1.5 from the trunk.
Tip revision: 317acd0
_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.1.1"
_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