Staging
v0.5.1
https://github.com/python/cpython
Revision 011287854a180abf88effd5cc113e7575f5431a3 authored by Anthony Baxter on 07 January 2002, 06:42:37 UTC, committed by Anthony Baxter on 07 January 2002, 06:42:37 UTC
manually with, e.g.:
    CC='gcc -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64' ./configure
1 parent 355b98a
Raw File
Tip revision: 011287854a180abf88effd5cc113e7575f5431a3 authored by Anthony Baxter on 07 January 2002, 06:42:37 UTC
MvL's patch to fix up large file support. You still need to enable it
Tip revision: 0112878
_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