Remove useless code

This seems to have no purpose to me.

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2013-04-06 23:40:21 +02:00
parent 123339bfcf
commit 801c4e0099

View File

@ -34,7 +34,3 @@ class HyString(HyObject, _str_type):
scripts. It's either a ``str`` or a ``unicode``, depending on the
Python version.
"""
def __new__(cls, value):
obj = _str_type.__new__(cls, value)
return obj