From: <pj...@us...> - 2009-05-28 03:01:25
|
Revision: 6408 http://jython.svn.sourceforge.net/jython/?rev=6408&view=rev Author: pjenvey Date: 2009-05-28 01:46:11 +0000 (Thu, 28 May 2009) Log Message: ----------- enable with statement for trunk gettext to fix test_gettext on Windows Modified Paths: -------------- trunk/jython/Lib/gettext.py Modified: trunk/jython/Lib/gettext.py =================================================================== --- trunk/jython/Lib/gettext.py 2009-05-28 01:46:00 UTC (rev 6407) +++ trunk/jython/Lib/gettext.py 2009-05-28 01:46:11 UTC (rev 6408) @@ -46,6 +46,7 @@ # find this format documented anywhere. +from __future__ import with_statement import locale, copy, os, re, struct, sys from errno import ENOENT This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |