More relative imports, Travis w/ Py3.3

This commit is contained in:
Jonathan Frederic 2013-10-31 18:15:49 +00:00
parent 2c3d80c275
commit e9fe606ba6
8 changed files with 8 additions and 8 deletions

View File

@ -13,7 +13,7 @@ Represents a boolean using a widget.
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from widget import Widget
from .widget import Widget
from IPython.utils.traitlets import Unicode, Bool, List
#-----------------------------------------------------------------------------

View File

@ -17,7 +17,7 @@ click events on the button and trigger backend code when the clicks are fired.
import inspect
import types
from widget import Widget
from .widget import Widget
from IPython.utils.traitlets import Unicode, Bool, Int
#-----------------------------------------------------------------------------

View File

@ -13,7 +13,7 @@ Represents a container that can be used to group other widgets.
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from widget import Widget
from .widget import Widget
from IPython.utils.traitlets import Unicode, Bool
#-----------------------------------------------------------------------------

View File

@ -13,7 +13,7 @@ Represents an unbounded float using a widget.
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from widget import Widget
from .widget import Widget
from IPython.utils.traitlets import Unicode, Float, Bool, List
#-----------------------------------------------------------------------------

View File

@ -13,7 +13,7 @@ Represents an unbounded int using a widget.
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from widget import Widget
from .widget import Widget
from IPython.utils.traitlets import Unicode, Int, Bool, List
#-----------------------------------------------------------------------------

View File

@ -14,7 +14,7 @@ pages.
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from widget import Widget
from .widget import Widget
from IPython.utils.traitlets import Unicode, Dict, Int
#-----------------------------------------------------------------------------

View File

@ -13,7 +13,7 @@ Represents an enumeration using a widget.
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from widget import Widget
from .widget import Widget
from IPython.utils.traitlets import Unicode, List, Bool
#-----------------------------------------------------------------------------

View File

@ -13,7 +13,7 @@ Represents a unicode string using a widget.
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from widget import Widget
from .widget import Widget
from IPython.utils.traitlets import Unicode, Bool, List
#-----------------------------------------------------------------------------