diff options
author | Georg Brandl <georg@python.org> | 2008-05-20 07:23:59 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-20 07:23:59 (GMT) |
commit | 06d2a2cb0e105019e8bd5e29a3c81c6874e6396a (patch) | |
tree | 90f38b3cb5a015901fdea5f4f8622925dc30a66f | |
parent | d66c84f63c3390f11d6dd420607b0dd958eb0476 (diff) | |
download | cpython-06d2a2cb0e105019e8bd5e29a3c81c6874e6396a.zip cpython-06d2a2cb0e105019e8bd5e29a3c81c6874e6396a.tar.gz cpython-06d2a2cb0e105019e8bd5e29a3c81c6874e6396a.tar.bz2 |
Remove debugging line.
-rw-r--r-- | Lib/lib-tk/Tkinter.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index dccabad..eb8fd44 100644 --- a/Lib/lib-tk/Tkinter.py +++ b/Lib/lib-tk/Tkinter.py @@ -1196,7 +1196,6 @@ class Misc: config = configure def cget(self, key): """Return the resource value for a KEY given as string.""" - print key return self.tk.call(self._w, 'cget', '-' + key) __getitem__ = cget def __setitem__(self, key, value): |