diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-30 18:30:35 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-30 18:30:35 (GMT) |
commit | 046467cf9a5c0a5699d5a11381470076ae2a1c3d (patch) | |
tree | 933bd067d114ec1e7dc4a8b79a3f1718fd5fce52 /Lib/test/test_uuid.py | |
parent | 1e8e5f0680b3014da460008b50bd1663cb1ef310 (diff) | |
download | cpython-046467cf9a5c0a5699d5a11381470076ae2a1c3d.zip cpython-046467cf9a5c0a5699d5a11381470076ae2a1c3d.tar.gz cpython-046467cf9a5c0a5699d5a11381470076ae2a1c3d.tar.bz2 |
Followup to r75965: replace the test_uuid-specific patch with a generic fix
(other tests may have the same problem).
Diffstat (limited to 'Lib/test/test_uuid.py')
-rw-r--r-- | Lib/test/test_uuid.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_uuid.py b/Lib/test/test_uuid.py index b4dd459..b749abc 100644 --- a/Lib/test/test_uuid.py +++ b/Lib/test/test_uuid.py @@ -314,7 +314,6 @@ class TestUUID(TestCase): import sys print(""" WARNING: uuid._ifconfig_getnode is unreliable on many platforms. It is disabled until the code and/or test can be fixed properly.""", file=sys.__stdout__) - sys.__stdout__.flush() return import os @@ -343,7 +342,6 @@ class TestUUID(TestCase): import sys print(""" WARNING: uuid._unixdll_getnode is unreliable on many platforms. It is disabled until the code and/or test can be fixed properly.""", file=sys.__stdout__) - sys.__stdout__.flush() return import os @@ -359,7 +357,6 @@ class TestUUID(TestCase): import sys print(""" WARNING: uuid.getnode is unreliable on many platforms. It is disabled until the code and/or test can be fixed properly.""", file=sys.__stdout__) - sys.__stdout__.flush() return node1 = uuid.getnode() |