We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bd8606 commit 6838c55Copy full SHA for 6838c55
1 file changed
Lib/UserString.py
@@ -127,8 +127,8 @@ def upper(self): return self.__class__(self.data.upper())
127
def zfill(self, width): return self.__class__(self.data.zfill(width))
128
129
# the following methods are defined for unicode objects only:
130
- def iswide(self): return self.data.iswide()
131
- def width(self): return self.data.width()
+ def iswide(self): return self.data.iswide() # unicode only
+ def width(self): return self.data.width() # unicode only
132
133
class MutableString(UserString):
134
"""mutable string objects
0 commit comments