| 
									
										
										
										
											1996-12-10 16:02:14 +00:00
										 |  |  | import time | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | time.altzone | 
					
						
							|  |  |  | time.clock() | 
					
						
							|  |  |  | t = time.time() | 
					
						
							|  |  |  | time.asctime(time.gmtime(t)) | 
					
						
							|  |  |  | if time.ctime(t) <> time.asctime(time.localtime(t)): | 
					
						
							|  |  |  |     print 'time.ctime(t) <> time.asctime(time.localtime(t))' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | time.daylight | 
					
						
							| 
									
										
										
										
											1997-12-09 16:56:41 +00:00
										 |  |  | if long(time.mktime(time.localtime(t))) <> long(t): | 
					
						
							| 
									
										
										
										
											1996-12-10 16:02:14 +00:00
										 |  |  |     print 'time.mktime(time.localtime(t)) <> t' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | time.sleep(1.2) | 
					
						
							|  |  |  | tt = time.gmtime(t) | 
					
						
							| 
									
										
										
										
											1997-04-02 06:13:34 +00:00
										 |  |  | for directive in ('a', 'A', 'b', 'B', 'c', 'd', 'H', 'I', | 
					
						
							|  |  |  | 		  'j', 'm', 'M', 'p', 'S', | 
					
						
							| 
									
										
										
										
											1996-12-10 16:02:14 +00:00
										 |  |  | 		  'U', 'w', 'W', 'x', 'X', 'y', 'Y', 'Z', '%'): | 
					
						
							| 
									
										
										
										
											1997-10-06 20:19:59 +00:00
										 |  |  |     format = ' %' + directive | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  | 	time.strftime(format, tt) | 
					
						
							|  |  |  |     except ValueError: | 
					
						
							|  |  |  | 	print 'conversion specifier:', format, ' failed.' | 
					
						
							| 
									
										
										
										
											1996-12-10 16:02:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | time.timezone | 
					
						
							|  |  |  | time.tzname | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # expected errors | 
					
						
							|  |  |  | try: | 
					
						
							|  |  |  |     time.asctime(0) | 
					
						
							|  |  |  | except TypeError: | 
					
						
							|  |  |  |     pass | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | try: | 
					
						
							|  |  |  |     time.mktime((999999, 999999, 999999, 999999, | 
					
						
							|  |  |  | 		 999999, 999999, 999999, 999999, | 
					
						
							|  |  |  | 		 999999)) | 
					
						
							|  |  |  | except OverflowError: | 
					
						
							|  |  |  |     pass |