Staging
v0.5.1
https://github.com/python/cpython
Revision bac1ea937e944a27644777d4522d929890922840 authored by Andrew MacIntyre on 16 July 2003, 13:31:11 UTC, committed by Andrew MacIntyre on 16 July 2003, 13:31:11 UTC
- more clean up of the generated import library definiton (.DEF file)
  following checking of patch 770521, and tightening of the sed regexps.

- use -O3 even with gcc 2.8.1 - worth nearly 10% with 2.3; worth
  nothing with 2.2.x.

- clean up a couple of whitespace issues introduced by a cut'n'paste.
1 parent d24c767
Raw File
Tip revision: bac1ea937e944a27644777d4522d929890922840 authored by Andrew MacIntyre on 16 July 2003, 13:31:11 UTC
More pre-2.3 build tweaks for the OS/2 EMX port:
Tip revision: bac1ea9
_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