diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-05-18 22:07:42 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-05-18 22:07:42 (GMT) |
commit | 913c15c1c6641195b492837eee1189369abe04b7 (patch) | |
tree | 7b71591f8d9d6e252fe7c0be76b79b729aedc831 | |
parent | 6e7e0790de156e737a3adea621056e4e48ae7599 (diff) | |
download | cpython-913c15c1c6641195b492837eee1189369abe04b7.zip cpython-913c15c1c6641195b492837eee1189369abe04b7.tar.gz cpython-913c15c1c6641195b492837eee1189369abe04b7.tar.bz2 |
fix test_platform (os was not imported)
-rw-r--r-- | Lib/test/test_platform.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_platform.py b/Lib/test/test_platform.py index f337fba..6275a6a 100644 --- a/Lib/test/test_platform.py +++ b/Lib/test/test_platform.py @@ -1,4 +1,5 @@ import sys +import os import unittest import platform |