Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'from:addr:yahoo.co.uk': 0.04; 'binary': 0.07; 'method.': 0.07; 'reason,': 0.07; 'ascii': 0.09; 'assumed': 0.09; 'deemed': 0.09; 'integers': 0.09; 'interpreted': 0.09; 'lawrence': 0.09; 'methods,': 0.09; 'paragraph,': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'sequences.': 0.09; 'stored': 0.12; 'language.': 0.14; 'changes': 0.15; '(inclusive)': 0.16; '255': 0.16; 'bytearray': 0.16; 'interpreted.': 0.16; 'mutable': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'unlikely': 0.16; 'whitespace.': 0.16; 'zero,': 0.16; 'language': 0.16; 'wrote:': 0.18; 'split': 0.19; 'header:User-Agent:1': 0.23; "aren't": 0.24; 'byte': 0.24; 'bytes': 0.24; 'integer': 0.24; 'interpret': 0.24; 'unicode': 0.24; "haven't": 0.24; 'header:X-Complaints-To:1': 0.27; 'header:In-Reply-To:1': 0.27; 'url:bugs': 0.29; 'array': 0.29; 'character': 0.29; "doesn't": 0.30; 'characters': 0.30; 'code': 0.31; 'strip': 0.31; 'subject:skip:i 10': 0.31; 'url:python': 0.33; '(e.g.': 0.33; 'guess': 0.33; '"the': 0.34; "can't": 0.35; 'operations': 0.35; 'but': 0.35; 'version': 0.36; 'sequence': 0.36; 'done': 0.36; 'method': 0.36; 'thanks': 0.36; 'subject:?': 0.36; 'url:org': 0.36; 'url:library': 0.38; 'to:addr :python-list': 0.38; 'pm,': 0.38; 'explain': 0.39; 'to:addr:python.org': 0.39; 'changed': 0.39; 'either': 0.39; 'received:org': 0.40; 'referred': 0.60; 'url:3': 0.61; 'range': 0.61; 'simple': 0.61; 'further': 0.61; 'first': 0.61; 'discuss': 0.62; 'our': 0.64; 'here': 0.66; 'useful.': 0.68; 'lack': 0.78; 'batchelder': 0.84; 'characters,': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Mark Lawrence Subject: Re: bytearray inconsistencies? Date: Sat, 21 Dec 2013 02:31:48 +0000 References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: host-78-147-30-118.as13285.net User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 57 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1387593133 news.xs4all.nl 2970 [2001:888:2000:d::a6]:32988 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:62464 On 21/12/2013 01:58, Ned Batchelder wrote: > On 12/20/13 8:06 PM, Mark Lawrence wrote: >> Quoting from http://docs.python.org/3/library/functions.html#bytearray >> >> "The bytearray type is a mutable sequence of integers in the range 0 <= >> x < 256." >> >> Quoting from http://docs.python.org/3/library/stdtypes.html#bytes-methods >> >> "Whenever a bytes or bytearray method needs to interpret the bytes as >> characters (e.g. the is...() methods, split(), strip()), the ASCII >> character set is assumed (text strings use Unicode semantics). >> >> Note - Using these ASCII based methods to manipulate binary data that is >> not stored in an ASCII based format may lead to data corruption. >> >> The search operations (in, count(), find(), index(), rfind() and >> rindex()) all accept both integers in the range 0 to 255 (inclusive) as >> well as bytes and byte array sequences. >> >> Changed in version 3.3: All of the search methods also accept an integer >> in the range 0 to 255 (inclusive) as their first argument." >> >> I don't understand why the docs talk about "a mutable sequence of >> integers" but then discuss "needs to interpret the bytes as characters". > > The split and strip methods work with whitespace when given no > arguments. Bytes aren't whitespace. Characters can be, so the bytes > need to be interpreted as characters. Likewise, the is* methods > (isalnum, isalpha, isdigit, islower, isspace, istitle, isupper) all > require characters, so the bytes must be interpreted. > >> Further I don't understand why the changes done in 3.3 referred to >> above haven't also been applied to (say) the split method. If I can >> call find to look for a zero, why can't I split on it? >> > > I don't know the reason, but I would guess either no one considered it, > or it was deemed unlikely to be useful. Explanation, or lack of it, here http://bugs.python.org/issue12170 > > If you have a zero, you can split on it with: > bytestring.split(bytes([0])), but that doesn't explain why find can take > a simple zero, and split has to take a bytestring with a zero in it. > I now have working code as a result of the above paragraph, thanks for that :) -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence