home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 January / maximum-cd-2011-01.iso / DiscContents / calibre-0.7.26.msi / file_2738 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-10-31  |  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.