tkinter-import
authorMatthias Klose <doko@debian.org>
Tue, 8 Dec 2020 07:51:42 +0000 (07:51 +0000)
committerMatthias Klose <doko@debian.org>
Tue, 8 Dec 2020 07:51:42 +0000 (07:51 +0000)
# DP: suggest installation of python-tk package on failing _tkinter import

# DP: suggest installation of python-tk package on failing _tkinter import

Gbp-Pq: Name tkinter-import.diff

Lib/tkinter/__init__.py

index 2175afcffa435ad4f85375eb593a2a29fc5a136f..31596200c671c5de27f1b0692114f5a3be10472b 100644 (file)
@@ -34,7 +34,10 @@ import enum
 import sys
 import types
 
-import _tkinter # If this fails your Python may not be configured for Tk
+try:
+    import _tkinter
+except ImportError as msg:
+    raise ImportError(str(msg) + ', please install the python3-tk package')
 TclError = _tkinter.TclError
 from tkinter.constants import *
 import re