[issue8614] test_gzip fails on OS X

2010-05-04 Thread Mark Dickinson
Mark Dickinson added the comment: Thanks, Antoine. Applied in r80762 through r80765. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> behavior ___ Python tracker

[issue8614] test_gzip fails on OS X

2010-05-04 Thread Mark Dickinson
Mark Dickinson added the comment: That fixes the failure. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue8614] test_gzip fails on OS X

2010-05-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ok, can you try the following patch then: Index: Lib/gzip.py === --- Lib/gzip.py (révision 80760) +++ Lib/gzip.py (copie de travail) @@ -362,7 +362,7 @@ if self.mode == WRITE:

[issue8614] test_gzip fails on OS X

2010-05-04 Thread Mark Dickinson
Mark Dickinson added the comment: Yep, that's enough to trigger it: Python 2.7b1+ (trunk:80760, May 4 2010, 19:27:27) [GCC 4.2.1 (Apple Inc. build 5659)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> f = open('LICENSE', 'rb') [35032 refs] >>> f.flush() T

[issue8614] test_gzip fails on OS X

2010-05-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Can you try the following: >>> f = open('LICENSE', 'rb') >>> f.flush() -- ___ Python tracker ___ __

[issue8614] test_gzip fails on OS X

2010-05-04 Thread Mark Dickinson
New submission from Mark Dickinson : test_buffered_reader test_gzip is failing for me since r80720, on trunk on OS X 10.6.3: == ERROR: test_buffered_reader (__main__.TestGzip) ---