Path: csiph.com!x330-a1.tempe.blueboxinc.net!feeder1.hal-mli.net!weretis.net!feeder1.news.weretis.net!news.albasani.net!news.stack.nl!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!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; 'subject:Python': 0.04; 'bytes.': 0.07; 'type,': 0.07; 'python': 0.07; 'from:addr:ethan': 0.09; 'from:addr:stoneleaf.us': 0.09; 'from:name:ethan furman': 0.09; 'message-id:@stoneleaf.us': 0.09; 'received:gator410.hostgator.com': 0.09; '~ethan~': 0.09; 'curiosity,': 0.16; 'feature?': 0.16; 'immutable': 0.16; 'received:72.11': 0.16; 'received:72.11.125': 0.16; 'received:72.11.125.166': 0.16; 'traceback': 0.16; '(most': 0.16; 'bytes': 0.19; 'integer': 0.23; 'last):': 0.23; 'null': 0.23; 'later': 0.26; 'object': 0.27; 'skip:b 20': 0.27; 'list': 0.30; 'typeerror:': 0.31; 'does': 0.31; 'anyone': 0.31; 'to:addr:python- list': 0.32; 'actually': 0.34; 'file': 0.35; 'header:User- Agent:1': 0.35; '"",': 0.35; 'assignment': 0.35; 'element': 0.38; 'so,': 0.38; 'to:addr:python.org': 0.39; 'would': 0.40; 'header:Received:5': 0.40; 'received:hostgator.com': 0.64; 'received:websitewelcome.com': 0.71 Date: Tue, 17 May 2011 11:47:01 -0700 From: Ethan Furman User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: Python Subject: Python 3.x and bytes Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - gator410.hostgator.com X-AntiAbuse: Original Domain - python.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - stoneleaf.us X-Source: X-Source-Args: X-Source-Dir: X-Source-Sender: mail.admailinc.com ([192.168.10.136]) [72.11.125.166]:2768 X-Source-Auth: ethan+stoneleaf.us X-Email-Count: 1 X-Source-Cap: dG9idWs7dG9idWs7Z2F0b3I0MTAuaG9zdGdhdG9yLmNvbQ== X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 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: 23 NNTP-Posting-Host: 82.94.164.166 X-Trace: 1305657292 news.xs4all.nl 49175 [::ffff:82.94.164.166]:45735 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:5591 In Python 3 one can say --> huh = bytes(5) Since the bytes type is actually a list of integers, I would have expected this to have huh being a bytestring with one element -- the integer 5. Actually, what you get is: --> huh b'\x00\x00\x00\x00\x00' or five null bytes. Note that this is an immutable type, so you cannot go in later and say --> huh[3] = 9 Traceback (most recent call last): File "", line 1, in TypeError: 'bytes' object does not support item assignment So, out of curiosity, does anyone actually use this, um, feature? ~Ethan~