Revision: 6852
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6852&view=rev
Author:   jswhit
Date:     2009-01-29 19:59:22 +0000 (Thu, 29 Jan 2009)

Log Message:
-----------
get rid of 'U' in mode flag for gzipped files.

Modified Paths:
--------------
    trunk/matplotlib/lib/matplotlib/cbook.py

Modified: trunk/matplotlib/lib/matplotlib/cbook.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/cbook.py    2009-01-29 18:12:56 UTC (rev 
6851)
+++ trunk/matplotlib/lib/matplotlib/cbook.py    2009-01-29 19:59:22 UTC (rev 
6852)
@@ -311,8 +311,8 @@
     if is_string_like(fname):
         if fname.endswith('.gz'):
             import gzip
-            # universal newline mode doesn't work for gzipped files.
-            if flag == 'rU': flag = 'r'
+            # get rid of 'U' in flag for gzipped files.
+            flag = flag.replace('U','')
             fh = gzip.open(fname, flag)
         else:
             fh = file(fname, flag)


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to