projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e3685fd
)
Fix yet one error in checking Tcl version. (GH-10189)
author
Serhiy Storchaka
<storchaka@gmail.com>
Sun, 28 Oct 2018 18:58:04 +0000
(20:58 +0200)
committer
GitHub
<noreply@github.com>
Sun, 28 Oct 2018 18:58:04 +0000
(20:58 +0200)
Lib/tkinter/test/support.py
patch
|
blob
|
history
diff --git
a/Lib/tkinter/test/support.py
b/Lib/tkinter/test/support.py
index 1321c056c2a221969707e3a839340de8e9fc23db..467a0b66c265c05f5631f544633151cd19e9b261 100644
(file)
--- a/
Lib/tkinter/test/support.py
+++ b/
Lib/tkinter/test/support.py
@@
-64,7
+64,7
@@
def requires_tcl(*version):
def newtest(self):
if get_tk_patchlevel() < version:
self.skipTest('requires Tcl version >= ' +
- '.'.join(map(str,
get_tk_patchlevel()
)))
+ '.'.join(map(str,
version
)))
test(self)
return newtest
return deco