MCPcopy Index your code
hub / github.com/python/cpython / newtest

Function newtest

Lib/test/test_tkinter/support.py:100–105  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

98 def deco(test):
99 @functools.wraps(test)
100 def newtest(self):
101 root = getattr(self, 'root', None)
102 if get_tk_patchlevel(root) < version:
103 self.skipTest('requires Tk version >= ' +
104 '.'.join(map(str, version)))
105 test(self)
106 return newtest
107 return deco
108

Callers

nothing calls this directly

Calls 4

testFunction · 0.90
get_tk_patchlevelFunction · 0.85
skipTestMethod · 0.80
joinMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…