summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_platform.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-01-25 03:40:53 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-01-25 03:40:53 (GMT)
commit79e0b818c577656c8ecc3576b5f34976a4cdff48 (patch)
tree2d8214beda9aa271cc5644422228b17919a68a91 /Lib/test/test_platform.py
parentfcdf9f215e9f304e362b47da7417e6117db7f5ed (diff)
downloadcpython-79e0b818c577656c8ecc3576b5f34976a4cdff48.zip
cpython-79e0b818c577656c8ecc3576b5f34976a4cdff48.tar.gz
cpython-79e0b818c577656c8ecc3576b5f34976a4cdff48.tar.bz2
Merged revisions 77737 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r77737 | benjamin.peterson | 2010-01-24 21:37:42 -0600 (Sun, 24 Jan 2010) | 9 lines Merged revisions 77735 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r77735 | benjamin.peterson | 2010-01-24 21:31:13 -0600 (Sun, 24 Jan 2010) | 1 line fix an UnboundLocalError when the release file is empty #7773 ........ ................
Diffstat (limited to 'Lib/test/test_platform.py')
-rw-r--r--Lib/test/test_platform.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_platform.py b/Lib/test/test_platform.py
index 9b75234..af37185 100644
--- a/Lib/test/test_platform.py
+++ b/Lib/test/test_platform.py
@@ -191,6 +191,7 @@ class PlatformTest(unittest.TestCase):
('Red Hat Enterprise Linux release 4 (Nahant)', ('Red Hat Enterprise Linux', '4', 'Nahant')),
('CentOS release 4', ('CentOS', '4', None)),
('Rocks release 4.2.1 (Cydonia)', ('Rocks', '4.2.1', 'Cydonia')),
+ ('', ('', '', '')), # If there's nothing there.
):
self.assertEqual(platform._parse_release_file(input), output)