We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae7b3c7 commit 70b61bcCopy full SHA for 70b61bc
1 file changed
src/future/types/newbytes.py
@@ -194,6 +194,9 @@ def __mod__(self, vals):
194
195
return _builtin_bytes.__mod__(self, vals)
196
197
+ def __imod__(self, other):
198
+ return self.__mod__(other)
199
+
200
def join(self, iterable_of_bytes):
201
errmsg = 'sequence item {0}: expected bytes, {1} found'
202
if isbytes(iterable_of_bytes) or istext(iterable_of_bytes):
0 commit comments