Author: Konstantin Lopuhin <[email protected]>
Branch: tkinter_osx_packaging
Changeset: r71398:5d8ce46c0acb
Date: 2014-05-08 18:45 +0400
http://bitbucket.org/pypy/pypy/changeset/5d8ce46c0acb/
Log: better error message: this needs X11 headers too
diff --git a/lib_pypy/_tkinter/__init__.py b/lib_pypy/_tkinter/__init__.py
--- a/lib_pypy/_tkinter/__init__.py
+++ b/lib_pypy/_tkinter/__init__.py
@@ -12,7 +12,8 @@
try:
from .tklib import tklib, tkffi
except cffi.VerificationError:
- raise ImportError("Tk headers and development libraries are required")
+ raise ImportError(
+ "Tk and X11 headers and development libraries are required")
from .app import TkApp
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit