| OLD | NEW |
| 1 import io | 1 import io |
| 2 import os | 2 import os |
| 3 import sys | 3 import sys |
| 4 import difflib | 4 import difflib |
| 5 | 5 |
| 6 from os import path | 6 from os import path |
| 7 from subprocess import Popen, PIPE | 7 from subprocess import Popen, PIPE |
| 8 | 8 |
| 9 xsltproc = path.join(os.getcwd(), "win32", "bin.msvc", "xsltproc.exe") | 9 xsltproc = path.join(os.getcwd(), "win32", "bin.msvc", "xsltproc.exe") |
| 10 if not path.isfile(xsltproc): | 10 if not path.isfile(xsltproc): |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 78 |
| 79 print("## Running exslt strings tests") | 79 print("## Running exslt strings tests") |
| 80 runtests("tests/exslt/strings") | 80 runtests("tests/exslt/strings") |
| 81 | 81 |
| 82 print("## Running exslt dynamic tests") | 82 print("## Running exslt dynamic tests") |
| 83 runtests("tests/exslt/dynamic") | 83 runtests("tests/exslt/dynamic") |
| 84 | 84 |
| 85 print("## Running exslt date tests") | 85 print("## Running exslt date tests") |
| 86 runtests("tests/exslt/date") | 86 runtests("tests/exslt/date") |
| 87 | 87 |
| OLD | NEW |