Project_Camper/venv/lib/python3.7/site-packages/PIL/_tkinter_finder.py
Krzysztof Bonecki 21be6f6d0e commit 2
2020-12-07 21:41:55 +01:00

10 lines
224 B
Python

""" 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__