Update of /cvsroot/pywin32/pywin32/win32/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19004
Modified Files:
win32timezone.py
Log Message:
Move __future__ statement to the top of the file.
Index: win32timezone.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/Lib/win32timezone.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** win32timezone.py 7 Sep 2004 10:22:56 -0000 1.2
--- win32timezone.py 12 Apr 2005 06:14:01 -0000 1.3
***************
*** 64,67 ****
--- 64,68 ----
"""
+ from __future__ import generators
__author__ = 'Jason R. Coombs <ja...@ja...>'
***************
*** 70,74 ****
__date__ = '$Modtime: 04-04-14 10:52 $'[10:-2]
- from __future__ import generators
import os, win32api, win32con, struct, datetime
--- 71,74 ----
|