Staging
v0.5.1
https://github.com/python/cpython
Revision d9bae8b95a4e998c7c34d31b63dc47de85ffa359 authored by Guido van Rossum on 22 January 2001, 16:01:24 UTC, committed by Guido van Rossum on 22 January 2001, 16:01:24 UTC
non-numeric ones, so 4 < None again in the 'map' test.
1 parent 8f9143d
Raw File
Tip revision: d9bae8b95a4e998c7c34d31b63dc47de85ffa359 authored by Guido van Rossum on 22 January 2001, 16:01:24 UTC
Numeric-smelling objects now once again compare smaller than
Tip revision: d9bae8b
rt.bat
@rem Run Tests.  Run the regression test suite.
@rem Plain "rt" runs Release build, arguments passed on to regrtest.
@rem "rt -d" runs Debug build similarly, after shifting off -d.
@rem Normally the tests are run twice, the first time after deleting
@rem all the .py[co] files from Lib/ and Lib/test.  But
@rem "rt -q" (for Quick) runs the tests just once, and without
@rem bothering to delete .py[co] files.
@set _exe=python
@set _qmode=no
@if "%1"=="-q" set _qmode=yes
@if "%1"=="-q" shift
@if "%1"=="-d" set _exe=python_d
@if "%1"=="-d" shift
@if "%_qmode%"=="yes" goto Qmode
@if "%1"=="-q" set _qmode=yes
@if "%1"=="-q" shift
@if "%_qmode%"=="yes" goto Qmode
@echo Deleting .pyc/.pyo files ...
@del ..\Lib\*.pyc
@del ..\Lib\*.pyo
@del ..\Lib\test\*.pyc
@del ..\Lib\test\*.pyo
%_exe% ../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
@echo About to run again without deleting .pyc/.pyo first:
@pause
:Qmode
%_exe% ../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
@set _exe=
@set _qmode=
back to top