This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gvanrossum
Recipients David.Edelsohn, gvanrossum, vstinner
Date 2013-11-24.20:29:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385324942.69.0.955703921004.issue19750@psf.upfronthosting.co.za>
In-reply-to
Content
Can you try this patch?

diff -r 14cbf01b1929 tests/test_unix_events.py
--- a/tests/test_unix_events.py Sun Nov 24 11:04:44 2013 -0800
+++ b/tests/test_unix_events.py Sun Nov 24 12:28:42 2013 -0800
@@ -379,7 +379,7 @@
         fstat_patcher = unittest.mock.patch('os.fstat')
         m_fstat = fstat_patcher.start()
         st = unittest.mock.Mock()
-        st.st_mode = stat.S_IFIFO
+        st.st_mode = stat.S_IFSOCK
         m_fstat.return_value = st
         self.addCleanup(fstat_patcher.stop)
History
Date User Action Args
2013-11-24 20:29:02gvanrossumsetrecipients: + gvanrossum, vstinner, David.Edelsohn
2013-11-24 20:29:02gvanrossumsetmessageid: <1385324942.69.0.955703921004.issue19750@psf.upfronthosting.co.za>
2013-11-24 20:29:02gvanrossumlinkissue19750 messages
2013-11-24 20:29:02gvanrossumcreate