Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove configurable.created #4613

Merged
merged 1 commit into from
Dec 5, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 0 additions & 3 deletions IPython/config/configurable.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
# Imports
#-----------------------------------------------------------------------------

import datetime
from copy import deepcopy

from .loader import Config, LazyConfigValue
Expand Down Expand Up @@ -55,7 +54,6 @@ class Configurable(HasTraits):

config = Instance(Config, (), {})
parent = Instance('IPython.config.configurable.Configurable')
created = None

def __init__(self, **kwargs):
"""Create a configurable given a config config.
Expand Down Expand Up @@ -102,7 +100,6 @@ def __init__(self, config=None):
# This should go second so individual keyword arguments override
# the values in config.
super(Configurable, self).__init__(**kwargs)
self.created = datetime.datetime.now()

#-------------------------------------------------------------------------
# Static trait notifiations
Expand Down