mirror of
https://github.com/python/cpython.git
synced 2025-07-21 10:15:46 +00:00
Fix yet one error in checking Tcl version. (GH-10189)
This commit is contained in:
parent
e3685fd5fd
commit
569d12f448
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ def requires_tcl(*version):
|
||||||
def newtest(self):
|
def newtest(self):
|
||||||
if get_tk_patchlevel() < version:
|
if get_tk_patchlevel() < version:
|
||||||
self.skipTest('requires Tcl version >= ' +
|
self.skipTest('requires Tcl version >= ' +
|
||||||
'.'.join(map(str, get_tk_patchlevel())))
|
'.'.join(map(str, version)))
|
||||||
test(self)
|
test(self)
|
||||||
return newtest
|
return newtest
|
||||||
return deco
|
return deco
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue