X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=lib%2Fmudpy%2Fmisc.py;h=059e1be9a617597f79599abbf9f1694b3a13cc72;hp=2edf96697ad4730e495de1e27952d0e8f0e38b78;hb=e0a20398d5cae3ea927132fb29a1bf76d0bb239a;hpb=2a1119763de7805f617d8b62b8f0822969f3d7df diff --git a/lib/mudpy/misc.py b/lib/mudpy/misc.py index 2edf966..059e1be 100644 --- a/lib/mudpy/misc.py +++ b/lib/mudpy/misc.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- """Miscellaneous functions for the mudpy engine.""" -# Copyright (c) 2004-2013 Jeremy Stanley . Permission +# Copyright (c) 2004-2014 Jeremy Stanley . Permission # to use, copy, modify, and distribute this software is granted under # terms provided in the LICENSE file distributed with this software. @@ -204,9 +204,6 @@ class Element: def set(self, facet, value): """Set values.""" if not self.has_facet(facet) or not self.get(facet) == value: - # TODO: remove this check after the switch to py3k - if repr(type(value)) == "": - value = str(value) if not type(value) is str: value = repr(value) self.origin.data.set(self.key, facet, value) @@ -1198,11 +1195,7 @@ def wrap_ansi_text(text, width): escape = False # normalize any potentially composited unicode before we count it - # TODO: remove this check after the switch to py3k - try: - text = unicodedata.normalize("NFKC", text) - except TypeError: - text = unicodedata.normalize("NFKC", unicode(text)) + text = unicodedata.normalize("NFKC", text) # iterate over each character from the begining of the text for each_character in text: