Commit 0a600cf2 authored by Terry Jan Reedy's avatar Terry Jan Reedy

Idlelib & buildbots: suppress py3 deprecation message even if enabled.

parent 47cb38cd
...@@ -3,6 +3,7 @@ import idlelib.CallTips as ct ...@@ -3,6 +3,7 @@ import idlelib.CallTips as ct
CTi = ct.CallTips() # needed for get_entity test in 2.7 CTi = ct.CallTips() # needed for get_entity test in 2.7
import textwrap import textwrap
import types import types
import warnings
default_tip = '' default_tip = ''
...@@ -162,8 +163,11 @@ class Get_entityTest(unittest.TestCase): ...@@ -162,8 +163,11 @@ class Get_entityTest(unittest.TestCase):
class Py2Test(unittest.TestCase): class Py2Test(unittest.TestCase):
def test_paramtuple_float(self): def test_paramtuple_float(self):
# 18539: (a,b) becomes '.0' in code object; change that but not float # 18539: (a,b) becomes '.0' in code object; change that but not 0.0
def f((a,b), c=0.0): pass with warnings.catch_warnings():
# Suppess message of py3 deprecation of parameter unpacking
warnings.simplefilter("ignore")
def f((a,b), c=0.0): pass
self.assertEqual(signature(f), '(<tuple>, c=0.0)') self.assertEqual(signature(f), '(<tuple>, c=0.0)')
if __name__ == '__main__': if __name__ == '__main__':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment