Home | History | Annotate | Download | only in test

Lines Matching refs:python

5 # previous version of Python by bouncing pickled objects through Python 2.4

6 # and Python 2.5 running this file.
22 # "provides" a pickletester module for older versions of Python that may be
60 """Check whether the given name is a valid Python binary and has
66 name: short string name of a Python binary such as "python2.4".
77 python = None
81 self.assertTrue(self.python)
85 def send_to_worker(self, python, obj, proto):
86 """Bounce a pickled object through another version of Python.
92 python: the name of the Python binary to start.
105 worker = subprocess.Popen([python, target, "worker"],
115 return self.send_to_worker(self.python, arg, proto)
174 # Test backwards compatibility with Python 2.4.
182 python = "python2.4"
185 # Disable these tests for Python 2.4. Making them pass would require
199 # Test backwards compatibility with Python 2.5.
207 python = "python2.5"
216 # Test backwards compatibility with Python 2.6.
224 python = "python2.6"