mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-16 14:46:58 +03:00
10 lines
224 B
Python
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__
|