fr/fr_env/lib/python3.8/site-packages/PIL/_tkinter_finder.py

10 lines
224 B
Python
Raw Normal View History

2021-02-17 12:26:31 +05:30
""" Find compiled module linking to Tcl / Tk libraries
"""
import sys
from tkinter import _tkinter as tk
if hasattr(sys, "pypy_find_executable"):
TKINTER_LIB = tk.tklib_cffi.__file__
else:
TKINTER_LIB = tk.__file__