Skip to content

Commit a6ed514

Browse files
committed
Add _flatten and _cnfmerge to tkinter package (issue #233)
1 parent c75378e commit a6ed514

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/future/moves/tkinter/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44

55
if not PY3:
66
from Tkinter import *
7+
from Tkinter import _flatten, _cnfmerge
78
else:
89
from tkinter import *

src/tkinter/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
if sys.version_info[0] < 3:
55
from Tkinter import *
6+
from Tkinter import _flatten, _cnfmerge
67
else:
78
raise ImportError('This package should not be accessible on Python 3. '
89
'Either you are trying to run from the python-future src folder '

0 commit comments

Comments
 (0)