diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2018-01-22 18:32:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-22 18:32:50 +0100 |
commit | 13ff24582c99dfb439b1af7295b401415e7eb05b (patch) | |
tree | 6966d9e1247134dfee9db73b6b5a215bfa88baf4 /Lib/test/test_os.py | |
parent | b0a7a037b8fde56b62f886d5188bced7776777b4 (diff) | |
download | cpython-git-13ff24582c99dfb439b1af7295b401415e7eb05b.tar.gz |
bpo-32593: Drop FreeBSD 9 and older support (#5232)
Drop support of FreeBSD 9 and older.
Diffstat (limited to 'Lib/test/test_os.py')
-rw-r--r-- | Lib/test/test_os.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 83e214d91e..02611d223b 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -782,9 +782,7 @@ class EnvironTests(mapping_tests.BasicTestMappingProtocol): value_str = value.decode(sys.getfilesystemencoding(), 'surrogateescape') self.assertEqual(os.environ['bytes'], value_str) - # On FreeBSD < 7 and OS X < 10.6, unsetenv() doesn't return a value (issue - # #13415). - @support.requires_freebsd_version(7) + # On OS X < 10.6, unsetenv() doesn't return a value (bpo-13415). @support.requires_mac_ver(10, 6) def test_unset_error(self): if sys.platform == "win32": |