home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / python / python_1 / scripts_ProfCal < prev    next >
Encoding:
Text File  |  1995-06-12  |  115 b   |  8 lines

  1. import calendar
  2. import time
  3. import profile
  4.  
  5. now=time.localtime(time.time())
  6. profile.run("calendar.prcal(now[0])")
  7.  
  8.