Lines Matching refs:exists
24 'getmtime', 'exists', 'isdir', 'isfile']
135 self.assertIs(self.pathmodule.exists(filename), False)
136 self.assertIs(self.pathmodule.exists(bfilename), False)
140 self.assertIs(self.pathmodule.exists(filename), True)
141 self.assertIs(self.pathmodule.exists(bfilename), True)
143 self.assertIs(self.pathmodule.exists(filename + '\udfff'), False)
144 self.assertIs(self.pathmodule.exists(bfilename + b'\xff'), False)
145 self.assertIs(self.pathmodule.exists(filename + '\x00'), False)
146 self.assertIs(self.pathmodule.exists(bfilename + b'\x00'), False)
162 self.assertTrue(self.pathmodule.exists(r))
166 self.assertFalse(self.pathmodule.exists(r))
326 if attr in ('exists', 'isdir', 'isfile'):
555 self.assertPathEqual(os.path.exists)