Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #67004

Re: Python 3.5, bytes, and %-interpolation (aka PEP 461)

Path csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed1a.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail
Return-Path <random832@fastmail.us>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.002
X-Spam-Evidence '*H*': 1.00; '*S*': 0.00; 'subject:Python': 0.06; 'subject:PEP': 0.07; 'string': 0.09; 'received:internal': 0.09; '24,': 0.16; 'clear.': 0.16; 'message- id:@webmail.messagingengine.com': 0.16; 'received:10.202': 0.16; 'received:10.202.2': 0.16; 'received:10.202.2.44': 0.16; 'received:66.111': 0.16; 'received:66.111.4': 0.16; 'received:66.111.4.27': 0.16; 'received:compute4.internal': 0.16; 'received:messagingengine.com': 0.16; 'received:out3-smtp.messagingengine.com': 0.16; 'wrote:': 0.18; 'feb': 0.22; 'mon,': 0.24; 'header:In-Reply-To:1': 0.27; 'to:2**1': 0.27; 'usually': 0.31; 'protocols': 0.31; 'subject:skip:i 10': 0.31; 'text': 0.33; 'received:66': 0.35; "can't": 0.35; 'add': 0.35; 'received:10': 0.37; 'to:addr:python- list': 0.38; 'to:addr:python.org': 0.39; 'from:no real name:2**0': 0.61; 'header:Message-Id:1': 0.63; '2014,': 0.84
DKIM-Signature v=1; a=rsa-sha1; c=relaxed/relaxed; d=fastmail.us; h= message-id:from:to:mime-version:content-transfer-encoding :content-type:in-reply-to:references:subject:date; s=mesmtp; bh= B6ongI2CdhCAGiopNh2OnLptiW0=; b=jM9SlUABXvozko+grBM7vsFnt8NvRTtR 7ce3Sf59VblujGU7A+g6nKKD72GowZcKVEPA/3Yknp/MTg+TnFPIRln5n39cpI8q dm6wDx4M5go1y/nmAXG/NzAeT3bdgEGf6H57BBtPQ1sz+en/vneIgPeFy1XziEUA rnpo5Dv4RXY=
DKIM-Signature v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=message-id:from:to:mime-version :content-transfer-encoding:content-type:in-reply-to:references :subject:date; s=smtpout; bh=B6ongI2CdhCAGiopNh2OnLptiW0=; b=oTE kgZ0g691jTwib77tf9hC2Ip1TVxHNzBRhAt5u7rY0E2JtYBN1RmyrKIh9GBl0KA3 06Tv6qpwthE85IZAGBTlFC9s+nkQtXWi+1pfyNuNRtH57RVQ8lz/Fiqan9CsZxc1 xrZT6pL6wMRLMRb7IoN4WAo9jyJN87HV2bLu22FY=
X-Sasl-Enc 8VD2NMjLGT85LVRfqRr3Mi+pUtcV4KQy8ArSkc/LpdYU 1393275888
From random832@fastmail.us
To Marko Rauhamaa <marko@pacujo.net>, python-list@python.org
MIME-Version 1.0
Content-Transfer-Encoding 7bit
Content-Type text/plain
X-Mailer MessagingEngine.com Webmail Interface - ajax-4527a23f
In-Reply-To <87ha7o9r2q.fsf@elektro.pacujo.net>
References <mailman.7328.1393271688.18130.python-list@python.org> <87ha7o9r2q.fsf@elektro.pacujo.net>
Subject Re: Python 3.5, bytes, and %-interpolation (aka PEP 461)
Date Mon, 24 Feb 2014 16:04:48 -0500
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.7331.1393275892.18130.python-list@python.org> (permalink)
Lines 9
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1393275892 news.xs4all.nl 2882 [2001:888:2000:d::a6]:42177
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:67004

Show key headers only | View raw


On Mon, Feb 24, 2014, at 15:46, Marko Rauhamaa wrote:
> That is:
> 
>  1. ineffient (encode/decode shuffle)
> 
>  2. unnatural (strings usually have no place in protocols)

That's not at all clear. Why _aren't_ these protocols considered text
protocols? Why can't you add a string directly to headers?

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Python 3.5, bytes, and %-interpolation  (aka PEP 461) Ethan Furman <ethan@stoneleaf.us> - 2014-02-24 11:54 -0800
  Re: Python 3.5, bytes, and %-interpolation  (aka PEP 461) Marko Rauhamaa <marko@pacujo.net> - 2014-02-24 22:46 +0200
    Re: Python 3.5, bytes, and %-interpolation  (aka PEP 461) random832@fastmail.us - 2014-02-24 16:04 -0500
      Re: Python 3.5, bytes, and %-interpolation  (aka PEP 461) Marko Rauhamaa <marko@pacujo.net> - 2014-02-25 00:18 +0200
        Re: Python 3.5, bytes, and %-interpolation  (aka PEP 461) Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2014-02-24 23:55 +0000
          Re: Python 3.5, bytes, and %-interpolation  (aka PEP 461) wxjmfauth@gmail.com - 2014-02-25 00:07 -0800
            Re: Python 3.5, bytes, and %-interpolation  (aka PEP 461) Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-02-25 08:29 +0000
    Re: Python 3.5, bytes, and %-interpolation  (aka PEP 461) Ethan Furman <ethan@stoneleaf.us> - 2014-02-24 13:53 -0800
  Re: Python 3.5, bytes, and %-interpolation  (aka PEP 461) Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2014-02-24 23:55 +0000
    Re: Python 3.5, bytes, and %-interpolation  (aka PEP 461) Ethan Furman <ethan@stoneleaf.us> - 2014-02-24 16:10 -0800
      Re: Python 3.5, bytes, and %-interpolation  (aka PEP 461) Steven D'Aprano <steve@pearwood.info> - 2014-02-25 07:29 +0000

csiph-web