Staging
v0.5.1
https://github.com/python/cpython
Revision 8429b1ad41e9c7063824bac10df5f55851fc6f8f authored by Michael W. Hudson on 25 March 2002, 12:25:26 UTC, committed by Michael W. Hudson on 25 March 2002, 12:25:26 UTC
    revision 2.19 of traceback.h

[Bug #528914] PyTraceBack_Store/Fetch were deleted in 1997, but their
              prototypes remain.  Noted by Yakov Markovitch.

Bugfix candidate.
1 parent d360a00
Raw File
Tip revision: 8429b1ad41e9c7063824bac10df5f55851fc6f8f authored by Michael W. Hudson on 25 March 2002, 12:25:26 UTC
backport akuchling's checkin of
Tip revision: 8429b1a
_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.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