_tkinter_finder.py 702 B

1234567891011121314151617181920
  1. """ Find compiled module linking to Tcl / Tk libraries
  2. """
  3. import sys
  4. if sys.version_info.major > 2:
  5. from tkinter import _tkinter as tk
  6. else:
  7. from Tkinter import tkinter as tk
  8. if hasattr(sys, "pypy_find_executable"):
  9. # Tested with packages at https://bitbucket.org/pypy/pypy/downloads.
  10. # PyPies 1.6, 2.0 do not have tkinter built in. PyPy3-2.3.1 gives an
  11. # OSError trying to import tkinter. Otherwise:
  12. try: # PyPy 5.1, 4.0.0, 2.6.1, 2.6.0
  13. TKINTER_LIB = tk.tklib_cffi.__file__
  14. except AttributeError:
  15. # PyPy3 2.4, 2.1-beta1; PyPy 2.5.1, 2.5.0, 2.4.0, 2.3, 2.2, 2.1
  16. TKINTER_LIB = tk.tkffi.verifier.modulefilename
  17. else:
  18. TKINTER_LIB = tk.__file__