Commit 2fb08a96 authored by Éric Araujo's avatar Éric Araujo

Merge 3.2

parents 3860cc20 2404e51c
...@@ -294,6 +294,7 @@ class sdist(Command): ...@@ -294,6 +294,7 @@ class sdist(Command):
join_lines=1, lstrip_ws=1, rstrip_ws=1, join_lines=1, lstrip_ws=1, rstrip_ws=1,
collapse_join=1) collapse_join=1)
try:
while True: while True:
line = template.readline() line = template.readline()
if line is None: # end of file if line is None: # end of file
...@@ -305,6 +306,8 @@ class sdist(Command): ...@@ -305,6 +306,8 @@ class sdist(Command):
self.warn("%s, line %d: %s" % (template.filename, self.warn("%s, line %d: %s" % (template.filename,
template.current_line, template.current_line,
msg)) msg))
finally:
template.close()
def prune_file_list(self): def prune_file_list(self):
"""Prune off branches that might slip into the file list as created """Prune off branches that might slip into the file list as created
......
...@@ -137,7 +137,7 @@ class RegisterTestCase(PyPIRCCommandTestCase): ...@@ -137,7 +137,7 @@ class RegisterTestCase(PyPIRCCommandTestCase):
# let's see what the server received : we should # let's see what the server received : we should
# have 2 similar requests # have 2 similar requests
self.assertTrue(self.conn.reqs, 2) self.assertEqual(len(self.conn.reqs), 2)
req1 = dict(self.conn.reqs[0].headers) req1 = dict(self.conn.reqs[0].headers)
req2 = dict(self.conn.reqs[1].headers) req2 = dict(self.conn.reqs[1].headers)
...@@ -169,7 +169,7 @@ class RegisterTestCase(PyPIRCCommandTestCase): ...@@ -169,7 +169,7 @@ class RegisterTestCase(PyPIRCCommandTestCase):
del register_module.input del register_module.input
# we should have send a request # we should have send a request
self.assertTrue(self.conn.reqs, 1) self.assertEqual(len(self.conn.reqs), 1)
req = self.conn.reqs[0] req = self.conn.reqs[0]
headers = dict(req.headers) headers = dict(req.headers)
self.assertEqual(headers['Content-length'], '608') self.assertEqual(headers['Content-length'], '608')
...@@ -187,7 +187,7 @@ class RegisterTestCase(PyPIRCCommandTestCase): ...@@ -187,7 +187,7 @@ class RegisterTestCase(PyPIRCCommandTestCase):
del register_module.input del register_module.input
# we should have send a request # we should have send a request
self.assertTrue(self.conn.reqs, 1) self.assertEqual(len(self.conn.reqs), 1)
req = self.conn.reqs[0] req = self.conn.reqs[0]
headers = dict(req.headers) headers = dict(req.headers)
self.assertEqual(headers['Content-length'], '290') self.assertEqual(headers['Content-length'], '290')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment