msg136786 - (view) |
Author: Max (max-alleged) |
Date: 2011-05-24 19:49 |
Bytes objects when indexed provide integers, but do not accept them to many functions, making them inconsistent with other sequences.
Basic example:
>>> test = b'012'
>>> n = test[1]
>>> n
49
>>> n in test
True
>>> test.index(n)
TypeError: expected an object with the buffer interface.
It is certainly unusual for n to be in the sequence, but not to be able to find it. I would expect the result to be 1. This set of commands with list, strings, tuples, but not bytes objects.
I suspect, from issue #10616, that all the following functions would be affected:
"bytes methods: partition, rpartition, find, index, rfind, rindex, count, translate, replace, startswith, endswith"
It would make more sense to me that instead of only supporting buffer interface objects, they also accept a single integer, and treat it as if it were provided a length-1 bytes object.
The use case I came across this problem was something like this:
Given seq1 and seq2, sequences of the same type:
[seq1.index(x) for x in seq2]
This works for strings, lists, tuples, but not bytes.
|
msg136787 - (view) |
Author: Max (max-alleged) |
Date: 2011-05-24 19:50 |
"This set of commands with list, strings, tuples, but not bytes objects."
should read
"This set of commands works with list, strings, tuples, but not bytes objects."
|
msg136878 - (view) |
Author: Terry J. Reedy (terry.reedy) * |
Date: 2011-05-25 17:41 |
> It is certainly unusual for n to be in the sequence, but not to be able to find it.
Agreed. Doc Lib: 4.6. Sequence Types — str, bytes, bytearray, list, tuple, range says '''
s.index(i) index of the first occurence of i in s
s.count(i) total number of occurences of i in s '''
so everything *in* a bytes should be valid for .index and .count.
>>> test = b'0120'
>>> z = b'0'
>>> zo = ord(z)
>>> z in test
True
>>> zo in test
True
>>> test.index(z)
0
>>> test.index(zo)
...
TypeError: expected an object with the buffer interface
>>> test.count(z)
2
>>> test.count(zo)
...
TypeError: expected an object with the buffer interface
# longer subsequences like b'01' also work
So I think the code for 3.2+ bytes.count() and bytes.index() should do the same branching as the code for bytes.__contains__.
The other functions you list, including .rindex are not general sequence functions but are string functions defined as taking subsequences as inputs. So they would never be used in generic code like .count and .index can be.
|
msg136883 - (view) |
Author: Max (max-alleged) |
Date: 2011-05-25 18:34 |
Fair enough.
I think it would make sense for the string methods to also accept single ints where possible as well:
For haystack and needles both strings:
[haystack.find(n) for n in needles]
For both bytes, it's a bit contortionist:
[haystack.find(needles[i:i+1]) for i in range(len(needles))]
One ends up doing a lot of the [i:i+1] bending when using bytes functions.
|
msg140903 - (view) |
Author: Petri Lehtinen (petri.lehtinen) * |
Date: 2011-07-22 20:02 |
This affects bytearray as well as bytes.
What comes to supporting integer argument to str methods, I'm -1 on that. str's "contained items" are strings of length 1.
|
msg141016 - (view) |
Author: Petri Lehtinen (petri.lehtinen) * |
Date: 2011-07-23 20:25 |
Attached a patch with the following changes:
Allow an integer argument in range(0, 256) for the following bytes and
bytearray methods: count, find, index, rfind, rindex. Initially, only
count and index were targeted, but as index is implemented in a helper
function that is also used to implement find, rfind and rindex, these
functions were affected too.
The bytes methods were changed to use the new buffer protocol instead
of the deprecated PyObject_AsCharBuffer, for consistency with the
bytearray code.
Tests for all the modified functions were expanded to cover the new
functionality. While at it, the tests for count, index and rindex were
also further expanded (to test for slices, for example), as they were
initially quite minimal.
A paragraph describing the additional semantics of the five methods
was added to the documentation.
The error messages of index and rindex were left untouched
("substring not found" and "subsection not found"). In a case where
the first argument is an integer, the error messages could talk about
a byte instead of substring/subsection. This would have been a bit
non-straightforward to implement, so I didn't.
The docstrings were also left unchanged, as I couldn't find a good
wording for them. The problem is not that the first argument may now
be an integer, but as it can now be more than a substring or
subsection, we might have to specify what a substring or subsection
really means. And that explanation would be lengthy (because of the buffer protocol, that's not a concept that a regular Python programmer is, or even needs to be, familiar with)...
And finally, there's one thing that I'm unsure of:
When an integer out of range(0, 256) is passed as the first argument,
should we raise a ValueError or a TypeError? Currently, a ValueError
is raised, but this may be bad for index and rindex, as they raise a
ValueError when the substring or byte is not found. I made the
decision to raise a ValueError decision because __contains__ of both
bytes and bytearray raise a ValueError when passed an integer not in
range(0, 256).
|
msg141033 - (view) |
Author: Ezio Melotti (ezio.melotti) * |
Date: 2011-07-24 02:05 |
> When an integer out of range(0, 256) is passed as the first argument,
> should we raise a ValueError or a TypeError?
ValueError = Inappropriate argument value (of correct type).
TypeError = Inappropriate argument type.
> Currently, a ValueError raised, but this may be bad for index and
> rindex, as they raise a ValueError when the substring or byte is not found.
Then the users should check if the value is in range(256) before passing it to (r)index.
|
msg141216 - (view) |
Author: Petri Lehtinen (petri.lehtinen) * |
Date: 2011-07-27 10:18 |
Ok, so the current raising semantics should be good.
|
msg141490 - (view) |
Author: Raymond Hettinger (rhettinger) * |
Date: 2011-08-01 07:51 |
See also #12631 regarding the remove() method for bytearray.
|
msg141491 - (view) |
Author: Petri Lehtinen (petri.lehtinen) * |
Date: 2011-08-01 09:04 |
> See also #12631 regarding the remove() method for bytearray.
AFAICS, it's about bytearray.remove() working but bytearray.index() not working as documented, and that's why I marked is as a duplicate of this issue.
|
msg145797 - (view) |
Author: Antoine Pitrou (pitrou) * |
Date: 2011-10-18 11:32 |
> I made the
> decision to raise a ValueError decision because __contains__ of both
> bytes and bytearray raise a ValueError when passed an integer not in
> range(0, 256).
That sounds reasonable. OverflowError would have been another choice, but I agree that consistency with __contains__ is sensible.
|
msg145799 - (view) |
Author: Antoine Pitrou (pitrou) * |
Date: 2011-10-18 11:35 |
Doc/library/stdtypes.rst needs a "versionadded" tag for the additional semantics.
Also, the patch doesn't compile fine on current default:
In file included from Objects/unicodeobject.c:487:0:
Objects/stringlib/find.h: In function ‘stringlib_parse_args_finds_byte’:
Objects/stringlib/find.h:158:5: attention : implicit declaration of function ‘stringlib_parse_args_finds’
In file included from Objects/unicodeobject.c:497:0:
Objects/stringlib/find.h: Hors de toute fonction :
Objects/stringlib/find.h:151:1: erreur: redefinition of ‘stringlib_parse_args_finds_byte’
Objects/stringlib/find.h:151:1: note: previous definition of ‘stringlib_parse_args_finds_byte’ was here
I'd say you need to either define your function as STRINGLIB(parse_args_finds_byte) (to avoid name collisions), or avoid defining it if STRINGLIB_IS_UNICODE.
|
msg145929 - (view) |
Author: Petri Lehtinen (petri.lehtinen) * |
Date: 2011-10-19 18:15 |
Thanks for the review, Antoine. Attached an updated the patch:
- The function definition now uses STRINGLIB(...) and the function is only defined when !STRINGLIB_IS_UNICODE (so I took both approaches)
- Added a "versionadded:: 3.3" to the documentation.
|
msg145931 - (view) |
Author: Petri Lehtinen (petri.lehtinen) * |
Date: 2011-10-19 18:18 |
Fixed a minor inconsistency.
|
msg146055 - (view) |
Author: Roundup Robot (python-dev) |
Date: 2011-10-20 21:58 |
New changeset c1effa2cdd20 by Antoine Pitrou in branch 'default':
Issue #12170: The count(), find(), rfind(), index() and rindex() methods
http://hg.python.org/cpython/rev/c1effa2cdd20
|
msg146056 - (view) |
Author: Antoine Pitrou (pitrou) * |
Date: 2011-10-20 21:58 |
Patch committed, thank you!
|
msg148232 - (view) |
Author: Petri Lehtinen (petri.lehtinen) * |
Date: 2011-11-24 07:48 |
Just a thought: Would this change be worthy for the "What's new in 3.3" list?
|
msg148237 - (view) |
Author: Antoine Pitrou (pitrou) * |
Date: 2011-11-24 10:27 |
> Just a thought: Would this change be worthy for the "What's new in 3.3"
> list?
I think so.
|
msg148287 - (view) |
Author: Roundup Robot (python-dev) |
Date: 2011-11-24 20:04 |
New changeset 736b0aec412b by Petri Lehtinen in branch 'default':
Add a "What's New" entry for #12170
http://hg.python.org/cpython/rev/736b0aec412b
|
msg149722 - (view) |
Author: Roundup Robot (python-dev) |
Date: 2011-12-18 00:17 |
New changeset 75648db1b3f3 by Victor Stinner in branch 'default':
Issue #13623: Fix a performance regression introduced by issue #12170 in
http://hg.python.org/cpython/rev/75648db1b3f3
|
msg149723 - (view) |
Author: STINNER Victor (vstinner) * |
Date: 2011-12-18 00:18 |
New changeset 75648db1b3f3 by Victor Stinner in branch 'default':
http://hg.python.org/cpython/rev/75648db1b3f3
Issue #13623: Fix a performance regression introduced by issue #12170 in bytes.find() and handle correctly OverflowError (raise the same ValueError than the error for -1).
|
msg164054 - (view) |
Author: Roundup Robot (python-dev) |
Date: 2012-06-26 07:28 |
New changeset 018fe1dee9b3 by Petri Lehtinen in branch 'default':
What's new: Add myself as the contributor of issue 12170
http://hg.python.org/cpython/rev/018fe1dee9b3
|
|
Date |
User |
Action |
Args |
2022-04-11 14:57:17 | admin | set | github: 56379 |
2012-06-26 07:28:04 | python-dev | set | messages:
+ msg164054 |
2011-12-18 00:18:53 | vstinner | set | messages:
+ msg149723 |
2011-12-18 00:17:54 | python-dev | set | messages:
+ msg149722 |
2011-11-24 20:04:29 | python-dev | set | messages:
+ msg148287 |
2011-11-24 10:27:17 | pitrou | set | messages:
+ msg148237 |
2011-11-24 07:48:32 | petri.lehtinen | set | messages:
+ msg148232 |
2011-10-20 21:58:46 | pitrou | set | status: open -> closed messages:
+ msg146056
assignee: rhettinger -> resolution: fixed stage: patch review -> resolved |
2011-10-20 21:58:20 | python-dev | set | nosy:
+ python-dev messages:
+ msg146055
|
2011-10-19 18:18:25 | petri.lehtinen | set | files:
+ issue12170_v2.patch
messages:
+ msg145931 |
2011-10-19 18:17:33 | petri.lehtinen | set | files:
- issue12170_v2.patch |
2011-10-19 18:15:49 | petri.lehtinen | set | files:
+ issue12170_v2.patch
messages:
+ msg145929 |
2011-10-18 12:20:14 | flox | set | nosy:
+ flox
|
2011-10-18 11:35:28 | pitrou | set | messages:
+ msg145799 |
2011-10-18 11:32:07 | pitrou | set | nosy:
+ pitrou messages:
+ msg145797
|
2011-08-01 09:04:12 | petri.lehtinen | set | messages:
+ msg141491 |
2011-08-01 07:51:55 | rhettinger | set | messages:
+ msg141490 |
2011-07-27 19:23:02 | vstinner | set | nosy:
+ vstinner
|
2011-07-27 10:45:14 | petri.lehtinen | link | issue12631 superseder |
2011-07-27 10:18:09 | petri.lehtinen | set | messages:
+ msg141216 |
2011-07-24 02:05:04 | ezio.melotti | set | messages:
+ msg141033 |
2011-07-23 20:25:08 | petri.lehtinen | set | keywords:
+ patch, needs review files:
+ issue12170.patch messages:
+ msg141016
stage: test needed -> patch review |
2011-07-22 20:02:04 | petri.lehtinen | set | title: Bytes.index() and bytes.count() should accept byte ints -> index() and count() methods of bytes and bytearray should accept byte ints messages:
+ msg140903 versions:
- Python 3.2 |
2011-06-06 11:23:39 | xuanji | set | nosy:
+ xuanji
|
2011-06-01 18:04:23 | eric.araujo | set | nosy:
+ eric.araujo
|
2011-05-31 16:00:03 | jcea | set | nosy:
+ jcea
|
2011-05-28 10:00:21 | ezio.melotti | set | nosy:
+ ezio.melotti
|
2011-05-25 18:36:49 | max-alleged | set | type: behavior versions:
+ Python 3.3 |
2011-05-25 18:34:53 | max-alleged | set | type: behavior -> (no value) messages:
+ msg136883 versions:
- Python 3.3 |
2011-05-25 17:42:31 | rhettinger | set | assignee: rhettinger
nosy:
+ rhettinger |
2011-05-25 17:41:53 | terry.reedy | set | title: Bytes.index() and bytes.count() do not accept byte ints -> Bytes.index() and bytes.count() should accept byte ints |
2011-05-25 17:41:15 | terry.reedy | set | versions:
+ Python 3.3 type: behavior
nosy:
+ terry.reedy title: Bytes objects do not accept integers to many functions -> Bytes.index() and bytes.count() do not accept byte ints messages:
+ msg136878 stage: test needed |
2011-05-25 16:33:09 | petri.lehtinen | set | nosy:
+ petri.lehtinen
|
2011-05-24 19:50:58 | max-alleged | set | messages:
+ msg136787 |
2011-05-24 19:49:09 | max-alleged | create | |