commit | 524e9a450bfb4b40f2815923a3229beab058858a | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Thu Aug 08 18:31:11 1996 +0000 |
committer | Guido van Rossum <guido@python.org> | Thu Aug 08 18:31:11 1996 +0000 |
tree | 1d514cbefbe6184e04bff086a933ee1df95db197 | |
parent | fcce630a7dfa2e1c10b87be44966196b693bd743 [diff] [blame] |
Need to import * from types
diff --git a/Lib/lib-tk/Canvas.py b/Lib/lib-tk/Canvas.py index cba22d1..65f87f6 100644 --- a/Lib/lib-tk/Canvas.py +++ b/Lib/lib-tk/Canvas.py
@@ -2,8 +2,7 @@ from Tkinter import Canvas -StringType = type('') -DictionaryType = type({}) +from types import * def _flatten(tuple): res = ()