(self, *args)
| 237 | @unittest.skipUnless(sys.platform == "ios", "Test only applicable to iOS") |
| 238 | class IOSBrowserTest(unittest.TestCase): |
| 239 | def _obj_ref(self, *args): |
| 240 | # Construct a string representation of the arguments that can be used |
| 241 | # as a proxy for object instance references |
| 242 | return "|".join(str(a) for a in args) |
| 243 | |
| 244 | @unittest.skipIf(getattr(webbrowser, "objc", None) is None, |
| 245 | "iOS Webbrowser tests require ctypes") |