diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-03-26 19:09:21 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-03-26 19:09:21 (GMT) |
commit | 0ad9b7727d172fc772a5499da37efcc9385ed7b0 (patch) | |
tree | e055387b51692e3b1a477f01eee55a5d5f983e96 /Lib/test/test_platform.py | |
parent | 94e4e2a7e583471627d76a2f3b2886c9064b7420 (diff) | |
download | cpython-0ad9b7727d172fc772a5499da37efcc9385ed7b0.zip cpython-0ad9b7727d172fc772a5499da37efcc9385ed7b0.tar.gz cpython-0ad9b7727d172fc772a5499da37efcc9385ed7b0.tar.bz2 |
add support for PyPy
Diffstat (limited to 'Lib/test/test_platform.py')
-rw-r--r-- | Lib/test/test_platform.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_platform.py b/Lib/test/test_platform.py index f10aa06..0ca761c 100644 --- a/Lib/test/test_platform.py +++ b/Lib/test/test_platform.py @@ -93,6 +93,11 @@ class PlatformTest(unittest.TestCase): : ("Jython", "2.5.0", "trunk", "6107", ('trunk:6107', 'Mar 26 2009'), "java1.5.0_16"), + ("2.5.2 (63378, Mar 26 2009, 18:03:29)\n[PyPy 1.0.0]", + ('PyPy', 'trunk', '63378'), self.save_platform) + : + ("PyPy", "2.5.2", "trunk", "63378", ('63378', 'Mar 26 2009'), + "") } for (version_tag, subversion, sys_platform), info in \ sys_versions.iteritems(): |