2011/5/5 raymond.hettinger <python-check...@python.org>: > http://hg.python.org/cpython/rev/1a56775c6e54 > changeset: 69857:1a56775c6e54 > branch: 3.2 > parent: 69855:97a4855202b8 > user: Raymond Hettinger <pyt...@rcn.com> > date: Thu May 05 11:35:50 2011 -0700 > summary: > Avoid codec spelling issues by just using the utf-8 default.
Out of curiosity, what is the issue? > > files: > Lib/random.py | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > > diff --git a/Lib/random.py b/Lib/random.py > --- a/Lib/random.py > +++ b/Lib/random.py > @@ -114,7 +114,7 @@ > if version == 2: > if isinstance(a, (str, bytes, bytearray)): > if isinstance(a, str): > - a = a.encode("utf8") > + a = a.encode() -- Regards, Benjamin _______________________________________________ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com