Staging
v0.5.1
https://github.com/python/cpython
Revision a30f7aca08c28f4744696d3fc2475da022d0d903 authored by Greg Ward on 26 September 2000, 02:00:51 UTC, committed by Greg Ward on 26 September 2000, 02:00:51 UTC
Standardize whitespace in function calls.
1 parent be86bde
Raw File
Tip revision: a30f7aca08c28f4744696d3fc2475da022d0d903 authored by Greg Ward on 26 September 2000, 02:00:51 UTC
Reformat docstrings.
Tip revision: a30f7ac
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.
@set _exe=python
@if "%1" =="-d" set _exe=python_d
@if "%1" =="-d" shift
%_exe% ../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
@set _exe=
back to top