[Python-checkins] python/dist/src/Misc ACKS,1.228,1.229 NEWS,1.695,1.696

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Fri, 14 Mar 2003 13:51:39 -0800


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1:/tmp/cvs-serv14617/Misc

Modified Files:
	ACKS NEWS 
Log Message:
- New function time.tzset() provides access to the C library tzet()
  function, if supported.  (SF patch #675422, by Stuart Bishop.)


Index: ACKS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/ACKS,v
retrieving revision 1.228
retrieving revision 1.229
diff -C2 -d -r1.228 -r1.229
*** ACKS	9 Mar 2003 07:05:43 -0000	1.228
--- ACKS	14 Mar 2003 21:51:33 -0000	1.229
***************
*** 51,54 ****
--- 51,55 ----
  Ron Bickers
  Dominic Binks
+ Stuart Bishop
  Roy Bixler
  Martin Bless

Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.695
retrieving revision 1.696
diff -C2 -d -r1.695 -r1.696
*** NEWS	13 Mar 2003 13:56:50 -0000	1.695
--- NEWS	14 Mar 2003 21:51:35 -0000	1.696
***************
*** 33,36 ****
--- 33,39 ----
  -----------------
  
+ - New function time.tzset() provides access to the C library tzet()
+   function, if supported.  (SF patch #675422.)
+ 
  - Using createfilehandler, deletefilehandler, createtimerhandler functions
    on Tkinter.tkinter (_tkinter module) no longer crashes the interpreter.