summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ascii_formatd.py
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2010-01-10 02:56:19 (GMT)
committerBrett Cannon <bcannon@gmail.com>2010-01-10 02:56:19 (GMT)
commit6fdd3dcb6a9998dbe7b707d7a3726733cc03681a (patch)
tree35f061054f51f3beffbde6edc85657dcbbddec97 /Lib/test/test_ascii_formatd.py
parent3ad57e2625601701b1a98324890095f411965af3 (diff)
downloadcpython-6fdd3dcb6a9998dbe7b707d7a3726733cc03681a.zip
cpython-6fdd3dcb6a9998dbe7b707d7a3726733cc03681a.tar.gz
cpython-6fdd3dcb6a9998dbe7b707d7a3726733cc03681a.tar.bz2
DeprecationWarning is now silent by default.
This was originally suggested by Guido, discussed on the stdlib-sig mailing list, and given the OK by Guido directly to me. What this change essentially means is that Python has taken a policy of silencing warnings that are only of interest to developers by default. This should prevent users from seeing warnings which are triggered by an application being run against a new interpreter before the app developer has a chance to update their code. Closes issue #7319. Thanks to Antoine Pitrou, Ezio Melotti, and Brian Curtin for helping with the issue.
Diffstat (limited to 'Lib/test/test_ascii_formatd.py')
-rw-r--r--Lib/test/test_ascii_formatd.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_ascii_formatd.py b/Lib/test/test_ascii_formatd.py
index 5ee84fa..77759fe 100644
--- a/Lib/test/test_ascii_formatd.py
+++ b/Lib/test/test_ascii_formatd.py
@@ -4,6 +4,7 @@
import unittest
from test_support import check_warnings, run_unittest, cpython_only
+import warnings
class FormatDeprecationTests(unittest.TestCase):
@@ -17,6 +18,7 @@ class FormatDeprecationTests(unittest.TestCase):
buf = create_string_buffer(' ' * 100)
with check_warnings() as w:
+ warnings.simplefilter('default')
PyOS_ascii_formatd(byref(buf), sizeof(buf), '%+.10f',
c_double(10.0))
self.assertEqual(buf.value, '+10.0000000000')