Fix tokenize.pyi; fix cp command.

This commit is contained in:
Guido van Rossum
2016-01-26 20:01:34 -08:00
parent 9e15a1db0a
commit bf1dde5636
2 changed files with 23 additions and 21 deletions

View File

@@ -9,5 +9,5 @@ install:
script:
- mypy stdlib/3/
- rm -rf 2_7; cp -r stdlib/2.7 2_7; rm 2_7/__builtin__.pyi; mypy --py2 2_7/
- rm -rf 2_7; cp -R -L stdlib/2.7 2_7; rm 2_7/__builtin__.pyi ; mypy --py2 2_7/
# That doesn't test everything, but it's a start.