Update of /cvsroot/pywin32/pywin32/win32/test
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv31920/win32/test
Modified Files:
test_pywintypes.py
Log Message:
drop useless test for timezone name in prep for datetime object support
Index: test_pywintypes.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/test/test_pywintypes.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** test_pywintypes.py 8 Jan 2009 02:56:18 -0000 1.6
--- test_pywintypes.py 25 Jan 2009 03:21:32 -0000 1.7
***************
*** 10,14 ****
pytime_current = pywintypes.Time(struct_current)
# try and test all the standard parts of the format
! format_strings = "%a %A %b %B %c %d %H %I %j %m %M %p %S %U %w %W %x %X %y %Y %Z"
for fmt in format_strings.split():
v1 = pytime_current.Format(fmt)
--- 10,16 ----
pytime_current = pywintypes.Time(struct_current)
# try and test all the standard parts of the format
! # Note we used to include '%Z' testing, but that was pretty useless as
! # it always returned the local timezone.
! format_strings = "%a %A %b %B %c %d %H %I %j %m %M %p %S %U %w %W %x %X %y %Y"
for fmt in format_strings.split():
v1 = pytime_current.Format(fmt)
|