mirror of
https://github.com/python/cpython.git
synced 2025-07-29 06:05:00 +00:00
I'm sick of these deprecations warnings in test_os
This commit is contained in:
parent
5539c78391
commit
1f01cd013f
1 changed files with 5 additions and 3 deletions
|
@ -505,9 +505,11 @@ class URandomTests (unittest.TestCase):
|
|||
self.assertEqual(len(os.urandom(100)), 100)
|
||||
self.assertEqual(len(os.urandom(1000)), 1000)
|
||||
# see http://bugs.python.org/issue3708
|
||||
self.assertEqual(len(os.urandom(0.9)), 0)
|
||||
self.assertEqual(len(os.urandom(1.1)), 1)
|
||||
self.assertEqual(len(os.urandom(2.0)), 2)
|
||||
with test_support.check_warnings():
|
||||
# silence deprecation warnings about float arguments
|
||||
self.assertEqual(len(os.urandom(0.9)), 0)
|
||||
self.assertEqual(len(os.urandom(1.1)), 1)
|
||||
self.assertEqual(len(os.urandom(2.0)), 2)
|
||||
except NotImplementedError:
|
||||
pass
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue