From 37958b84024bebb28a71fa5c362eae94fb6afdf9 2014-04-17 13:44:34 From: Matthias BUSSONNIER Date: 2014-04-17 13:44:34 Subject: [PATCH] remove confusing mention of 2.6 --- diff --git a/IPython/utils/traitlets.py b/IPython/utils/traitlets.py index 172d60e..8141cf6 100644 --- a/IPython/utils/traitlets.py +++ b/IPython/utils/traitlets.py @@ -449,7 +449,7 @@ class MetaHasTraits(type): class HasTraits(py3compat.with_metaclass(MetaHasTraits, object)): def __new__(cls, *args, **kw): - # This is needed because in Python 2.6 object.__new__ only accepts + # This is needed because object.__new__ only accepts # the cls argument. new_meth = super(HasTraits, cls).__new__ if new_meth is object.__new__: