2011/5/5 raymond.hettinger <python-checkins at python.org>: > http://hg.python.org/cpython/rev/1a56775c6e54 > changeset: 69857:1a56775c6e54 > branch: 3.2 > parent: 69855:97a4855202b8 > user: Raymond Hettinger <python at 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
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4