HomeSort by relevance Sort by last modified time
    Searched refs:wmod (Results 1 - 2 of 2) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_warnings.py 602 wmod = self.module
603 orig_filters = wmod.filters
604 orig_showwarning = wmod.showwarning
606 with wmod.catch_warnings(module=wmod, record=True):
607 wmod.filters = wmod.showwarning = object()
608 self.assertTrue(wmod.filters is orig_filters)
609 self.assertTrue(wmod.showwarning is orig_showwarning)
611 with wmod.catch_warnings(module=wmod, record=False)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_warnings.py 602 wmod = self.module
603 orig_filters = wmod.filters
604 orig_showwarning = wmod.showwarning
606 with wmod.catch_warnings(module=wmod, record=True):
607 wmod.filters = wmod.showwarning = object()
608 self.assertTrue(wmod.filters is orig_filters)
609 self.assertTrue(wmod.showwarning is orig_showwarning)
611 with wmod.catch_warnings(module=wmod, record=False)
    [all...]

Completed in 52 milliseconds