~ubuntu-branches/ubuntu/utopic/python-traitsui/utopic

« back to all changes in this revision

Viewing changes to traitsui/wx/popup_editor.py

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2011-07-09 13:57:39 UTC
  • Revision ID: james.westby@ubuntu.com-20110709135739-x5u20q86huissmn1
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#-------------------------------------------------------------------------------
 
2
#  Imports:
 
3
#-------------------------------------------------------------------------------
 
4
 
 
5
 
 
6
# FIXME: PopupEditor is a proxy class defined here just for backward
 
7
# compatibility. The class (which represents the editor factory) has been moved
 
8
# to the traitsui.editors.list_editor file.
 
9
from traitsui.editors.popup_editor \
 
10
    import _PopupEditor as BasePopupEditor, PopupEditor
 
11
 
 
12
from ui_editor \
 
13
    import UIEditor
 
14
 
 
15
#-------------------------------------------------------------------------------
 
16
#  '_PopupEditor' class:
 
17
#-------------------------------------------------------------------------------
 
18
 
 
19
class _PopupEditor ( BasePopupEditor, UIEditor ):
 
20
    pass
 
21
#--EOF-------------------------------------------------------------------------