This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Optimize bytes.upper() and lower()
Type: performance Stage: resolved
Components: Interpreter Core Versions: Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, flox, pitrou, python-dev, vstinner
Priority: low Keywords: patch

Created on 2012-01-08 14:49 by pitrou, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
bytesupper.patch pitrou, 2012-01-08 14:49 review
Messages (4)
msg150868 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012-01-08 14:49
The current implementation has useless testing and copying.
msg150869 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2012-01-08 15:11
LGTM.
msg150872 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-01-08 15:44
New changeset 9683d59170ee by Antoine Pitrou in branch 'default':
Issue #13738: Simplify implementation of bytes.lower() and bytes.upper().
http://hg.python.org/cpython/rev/9683d59170ee
msg150874 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012-01-08 15:48
Thanks.
History
Date User Action Args
2022-04-11 14:57:25adminsetgithub: 57947
2012-01-08 15:48:35pitrousetstatus: open -> closed
resolution: fixed
messages: + msg150874

stage: patch review -> resolved
2012-01-08 15:44:56python-devsetnosy: + python-dev
messages: + msg150872
2012-01-08 15:11:18benjamin.petersonsetmessages: + msg150869
2012-01-08 14:49:18pitroucreate