comparison tests/test-hglib.py @ 134:1b47146a4a2c 1.4

style: fix long lines
author Matt Mackall <mpm@selenic.com>
date Tue, 30 Sep 2014 12:48:04 -0500
parents d1f57f162274
children c1b966866ed7
comparison
equal deleted inserted replaced
133:b6f601ba7f3c 134:1b47146a4a2c
3 class test_hglib(common.basetest): 3 class test_hglib(common.basetest):
4 def setUp(self): 4 def setUp(self):
5 pass 5 pass
6 6
7 def test_close_fds(self): 7 def test_close_fds(self):
8 """ 8 """A weird Python bug that has something to do to inherited file
9 A weird Python bug that has something to do to inherited file descriptors, 9 descriptors, see http://bugs.python.org/issue12786
10 see http://bugs.python.org/issue12786
11 """ 10 """
12 common.basetest.setUp(self) 11 common.basetest.setUp(self)
13 client2 = hglib.open() 12 client2 = hglib.open()
14 self.client.close() 13 self.client.close()