| Index: third_party/google-endpoints/tkinter/simpledialog.py
|
| diff --git a/third_party/google-endpoints/tkinter/simpledialog.py b/third_party/google-endpoints/tkinter/simpledialog.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e952fa994e4e6fe97affc20171b175c6b7dbe67d
|
| --- /dev/null
|
| +++ b/third_party/google-endpoints/tkinter/simpledialog.py
|
| @@ -0,0 +1,13 @@
|
| +from __future__ import absolute_import
|
| +
|
| +from future.utils import PY3
|
| +
|
| +if PY3:
|
| + from tkinter.simpledialog import *
|
| +else:
|
| + try:
|
| + from SimpleDialog import *
|
| + except ImportError:
|
| + raise ImportError('The SimpleDialog module is missing. Does your Py2 '
|
| + 'installation include tkinter?')
|
| +
|
|
|