home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2010 November / maximum-cd-2010-11.iso / DiscContents / calibre-0.7.13.msi / file_2594 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-08-06  |  763 b   |  18 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.6)
  3.  
  4. import unittest
  5. import win32timezone
  6. import doctest
  7.  
  8. class Win32TimeZoneTest(unittest.TestCase):
  9.     
  10.     def testWin32TZ(self):
  11.         (failed, total) = doctest.testmod(win32timezone, verbose = False)
  12.         self.failIf(failed)
  13.  
  14.  
  15. if __name__ == '__main__':
  16.     unittest.main()
  17.  
  18.