|  | @@ -50,9 +50,6 @@ ZERO = timedelta(0)
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  _local_timezone = None
 |  |  _local_timezone = None
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | -__timezone__ = -_time.timezone
 |  | 
 | 
											
												
													
														|  | -__altzone__ = -_time.altzone
 |  | 
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  class LocalTimezone(tzinfo):
 |  |  class LocalTimezone(tzinfo):
 | 
											
												
													
														|  |      """Local time implementation taken from Python's docs.
 |  |      """Local time implementation taken from Python's docs.
 | 
											
										
											
												
													
														|  | @@ -334,10 +331,10 @@ class ffwd(object):
 | 
											
												
													
														|  |          }, **extra)
 |  |          }, **extra)
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | -def utcoffset():
 |  | 
 | 
											
												
													
														|  | -    if _time.daylight:
 |  | 
 | 
											
												
													
														|  | -        return __altzone__ // 3600
 |  | 
 | 
											
												
													
														|  | -    return __timezone__ // 3600
 |  | 
 | 
											
												
													
														|  | 
 |  | +def utcoffset(time=_time):
 | 
											
												
													
														|  | 
 |  | +    if time.daylight:
 | 
											
												
													
														|  | 
 |  | +        return time.altzone // 3600
 | 
											
												
													
														|  | 
 |  | +    return time.timezone // 3600
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  def adjust_timestamp(ts, offset, here=utcoffset):
 |  |  def adjust_timestamp(ts, offset, here=utcoffset):
 |