[Python-checkins] benchmarks: Don't use symlinks for 2to3 test data; Windows doesn't support them

brett.cannon python-checkins at python.org
Fri Oct 16 13:30:31 EDT 2015


https://hg.python.org/benchmarks/rev/f49d8d468815
changeset:   225:f49d8d468815
user:        Brett Cannon <brett at python.org>
date:        Fri Oct 16 10:30:26 2015 -0700
summary:
  Don't use symlinks for 2to3 test data; Windows doesn't support them

files:
  lib/2to3_data |  1 -
  perf.py       |  2 +-
  2 files changed, 1 insertions(+), 2 deletions(-)


diff --git a/lib/2to3_data b/lib/2to3_data
deleted file mode 120000
--- a/lib/2to3_data
+++ /dev/null
@@ -1,1 +0,0 @@
-2to3
\ No newline at end of file
diff --git a/perf.py b/perf.py
--- a/perf.py
+++ b/perf.py
@@ -1342,7 +1342,7 @@
                            python, options)
     two_to_three_bin = Relative(ported_lib(python) + "/2to3/2to3", python,
                                 options)
-    two_to_three_dir = Relative("lib/2to3_data", python, options)
+    two_to_three_dir = Relative("lib/2to3", python, options)
     env = BuildEnv({"PYTHONPATH": two_to_three_dir},
                    inherit_env=options.inherit_env)
 

-- 
Repository URL: https://hg.python.org/benchmarks


More information about the Python-checkins mailing list