Merge branch 'jd/clean-hystring' of git://github.com/jd/hy

This commit is contained in:
Paul R. Tagliamonte 2013-04-06 19:17:28 -04:00
commit 0eb4029d74

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