[Python-Dev] r84771 - python/branches/release27-maint/Lib/test/test_io.py (original) (raw)
Georg Brandl g.brandl at gmx.net
Thu Sep 16 17:27:50 CEST 2010
- Previous message: [Python-Dev] url shortening services (was Re: standards for distribution names)
- Next message: [Python-Dev] r84771 - python/branches/release27-maint/Lib/test/test_io.py
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Maybe you want to mention who warns?
Georg
Am 13.09.2010 10:20, schrieb florent.xicluna:
Author: florent.xicluna Date: Mon Sep 13 10:20:19 2010 New Revision: 84771
Log: Silence warning about 1/0 Modified: python/branches/release27-maint/Lib/test/testio.py Modified: python/branches/release27-maint/Lib/test/testio.py ============================================================================== --- python/branches/release27-maint/Lib/test/testio.py (original) +++ python/branches/release27-maint/Lib/test/testio.py Mon Sep 13 10:20:19 2010 @@ -2484,7 +2484,7 @@ signal.signal(signal.SIGALRM, self.oldalrm) def alarminterrupt(self, sig, frame): - 1/0 + 1 // 0 @unittest.skipUnless(threading, 'Threading required for this test.') def checkinterruptedwrite(self, item, bytes, **fdopenkwargs):
-- Thus spake the Lord: Thou shalt indent with four spaces. No more, no less. Four shall be the number of spaces thou shalt indent, and the number of thy indenting shall be four. Eight shalt thou not indent, nor either indent thou two, excepting that thou then proceed to four. Tabs are right out.
- Previous message: [Python-Dev] url shortening services (was Re: standards for distribution names)
- Next message: [Python-Dev] r84771 - python/branches/release27-maint/Lib/test/test_io.py
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]