Revert "Revert "Remove useless code""

This reverts commit 262da59c77.

Conflicts:
	hy/models/string.py
This commit is contained in:
Paul R. Tagliamonte 2013-04-07 10:06:44 -04:00
parent 9d36dab693
commit 3c735d18bd

View File

@ -34,7 +34,4 @@ 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
pass