Lines Matching refs:e2
2124 except EnvironmentError as e2:
2129 e = e2
2864 def _make_and(self, e1, e2): argument
2868 return e2
2870 if e2 is self.y:
2873 if e1 is self.n or e2 is self.n:
2876 return (AND, e1, e2)
2878 def _make_or(self, e1, e2): argument
2882 return e2
2884 if e2 is self.n:
2887 if e1 is self.y or e2 is self.y:
2890 return (OR, e1, e2)
6266 except EnvironmentError as e2:
6269 .format(filename, std_msg(e1), std_msg(e2)))