diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-26 14:47:46 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-26 14:47:46 (GMT) |
commit | b554faddf5d721d1d0039c57aae920f3156a5eb2 (patch) | |
tree | 3334b35fe5dae13367472647d18e04f73c00d7e8 /Lib/tkinter | |
parent | 8122174af1a3c50671c48720ca3f18af9feda56b (diff) | |
parent | 745a407df88f2c5baacb4e61d8e37e7ed5d4671f (diff) | |
download | cpython-b554faddf5d721d1d0039c57aae920f3156a5eb2.zip cpython-b554faddf5d721d1d0039c57aae920f3156a5eb2.tar.gz cpython-b554faddf5d721d1d0039c57aae920f3156a5eb2.tar.bz2 |
Issue #22115: Updated Misc/NEWS.
Diffstat (limited to 'Lib/tkinter')
-rw-r--r-- | Lib/tkinter/test/test_tkinter/test_variables.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/tkinter/test/test_tkinter/test_variables.py b/Lib/tkinter/test/test_tkinter/test_variables.py index c529259..4485817 100644 --- a/Lib/tkinter/test/test_tkinter/test_variables.py +++ b/Lib/tkinter/test/test_tkinter/test_variables.py @@ -89,7 +89,7 @@ class TestVariable(TestBase): def test_trace_old(self): # Old interface - v = Var(self.root) + v = Variable(self.root) vname = str(v) trace = [] def read_tracer(*args): @@ -138,7 +138,7 @@ class TestVariable(TestBase): self.assertEqual(trace, [('write', vname, '', 'u')]) def test_trace(self): - v = Var(self.root) + v = Variable(self.root) vname = str(v) trace = [] def read_tracer(*args): |