mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
Revert r63934 -- it was mixing two patches.
This commit is contained in:
parent
f954c4b9fb
commit
a26f8ca668
37 changed files with 1028 additions and 1188 deletions
|
|
@ -31,11 +31,11 @@
|
|||
@if "%_qmode%"=="yes" goto Qmode
|
||||
@echo Deleting .pyc/.pyo files ...
|
||||
@%_exe% rmpyc.py
|
||||
%_exe% %_dashO% -E ../../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
|
||||
%_exe% %_dashO% -E -tt ../../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% %_dashO% -E ../../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
|
||||
%_exe% %_dashO% -E -tt ../../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
|
||||
@set _exe=
|
||||
@set _qmode=
|
||||
@set _dashO=
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ if "%1"=="-O" (set dashO=-O) & shift & goto CheckOpts
|
|||
if "%1"=="-q" (set qmode=yes) & shift & goto CheckOpts
|
||||
if "%1"=="-d" (set exe=python_d) & shift & goto CheckOpts
|
||||
|
||||
set cmd=%exe% %dashO% -E ../../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
|
||||
set cmd=%exe% %dashO% -E -tt ../../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
|
||||
if defined qmode goto Qmode
|
||||
|
||||
echo Deleting .pyc/.pyo files ...
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ if "%1"=="-O" (set dashO=-O) & shift & goto CheckOpts
|
|||
if "%1"=="-q" (set qmode=yes) & shift & goto CheckOpts
|
||||
if "%1"=="-d" (set exe=python_d) & shift & goto CheckOpts
|
||||
|
||||
set cmd=%exe% %dashO% -E ../../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
|
||||
set cmd=%exe% %dashO% -E -tt ../../lib/test/regrtest.py %1 %2 %3 %4 %5 %6 %7 %8 %9
|
||||
if defined qmode goto Qmode
|
||||
|
||||
echo Deleting .pyc/.pyo files ...
|
||||
|
|
|
|||
|
|
@ -666,7 +666,7 @@ _ssl$(MODULE.EXT): $(OUT)_ssl$O $(OUT)_ssl_m.def $(PYTHON.IMPLIB)
|
|||
# the test target
|
||||
test:
|
||||
-find ../../Lib -name "*.py[co]" -exec rm {} ";"
|
||||
-./python -E ../../lib/test/regrtest.py -l -u "network"
|
||||
./python -E ../../lib/test/regrtest.py -l -u "network"
|
||||
-./python -E -tt ../../lib/test/regrtest.py -l -u "network"
|
||||
./python -E -tt ../../lib/test/regrtest.py -l -u "network"
|
||||
|
||||
-include $(OUTBASE)python.dep
|
||||
|
|
|
|||
|
|
@ -49,6 +49,7 @@ EXPORTS
|
|||
"PyParser_Delete"
|
||||
|
||||
; From python26_s.lib(parsetok)
|
||||
"Py_TabcheckFlag"
|
||||
"PyParser_ParseString"
|
||||
"PyParser_ParseStringFlagsFilename"
|
||||
"PyParser_ParseFile"
|
||||
|
|
|
|||
|
|
@ -61,6 +61,7 @@ EXPORTS
|
|||
Py_InteractiveFlag
|
||||
Py_NoSiteFlag
|
||||
Py_OptimizeFlag
|
||||
Py_TabcheckFlag
|
||||
Py_UseClassExceptionsFlag
|
||||
Py_VerboseFlag
|
||||
_PyImport_Filetab
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue