Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #24540
| Path | csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!ecngs!feeder2.ecngs.de!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <kliateni@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.023 |
| X-Spam-Evidence | '*H*': 0.95; '*S*': 0.00; 'output': 0.04; 'sys': 0.05; '-*-': 0.07; 'coding:': 0.09; ':-)': 0.13; "c'est": 0.16; 'cp1252': 0.16; '\xe9crit': 0.16; 'bit': 0.21; 'import': 0.21; 'cheers': 0.24; 'header:In-Reply-To:1': 0.25; 'header:User- Agent:1': 0.26; 'skip:( 20': 0.28; "skip:' 10": 0.30; 'to:addr :python-list': 0.33; 'received:google.com': 0.34; 'received:192.168.0': 0.35; 'message-id:@gmail.com': 0.36; 'received:74.125': 0.36; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'received:192': 0.39; 'received:192.168': 0.40; 'header:Received:5': 0.40; 'subject:, ': 0.61; 'email addr:gmail.com': 0.63; 'subject:\xe9': 0.65; 'tout': 0.65; 'subjectcharset:iso-8859-1': 0.67; 'subject:\xe8': 0.91 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=38ITD95Jg//agnUCq8LVBsBalylpeQDqRA6NXR+aSVs=; b=tK94IvdruFE/Y4BsuKS2H4QP1CxPpt5tSWZOqXbCRy1v0W2cI3rtw7syORWrbofss2 3d71dWpxED8L3Q3o0hf+OlvyxpRmD36ZiPdBAGENic1AhxWi4ZMLLHkyLpvtInAtLJaI 6jCw9O/af7AfyRw8opf8ijZH4xwoXuUuqxmxz4piqm4FfqpQBAr1ie8nmmRCTSJc4dys 522drEOgbh927Y4Keu+TfwNRG4yH62CmZ1/A3zlQMimtOto0IQ/VAGxzKT2gx9fbu7rZ yaw48xSd+vSB+O6V5EtOWFQ64U1MmSCe4YD51pbrVAKowWx/oum7Mr5xsbg9sok/yiyL Iteg== |
| Date | Wed, 27 Jun 2012 22:48:37 +0200 |
| From | Karim <kliateni@gmail.com> |
| User-Agent | Mozilla/5.0 (X11; Linux x86_64; rv:13.0) Gecko/20120615 Thunderbird/13.0.1 |
| MIME-Version | 1.0 |
| To | python-list@python.org |
| Subject | Re: Py330b1, un café crème sucré |
| References | <2ab28feb-71ed-44ec-a0e2-7258ef545e27@googlegroups.com> |
| In-Reply-To | <2ab28feb-71ed-44ec-a0e2-7258ef545e27@googlegroups.com> |
| Content-Type | text/plain; charset=ISO-8859-1; format=flowed |
| Content-Transfer-Encoding | 8bit |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.12 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://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 | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.1564.1340830121.4697.python-list@python.org> (permalink) |
| Lines | 43 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1340830121 news.xs4all.nl 6990 [2001:888:2000:d::a6]:34192 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:24540 |
Show key headers only | View raw
Euhhh, j'ai pas tout suivi. C'est quoi la feinte?
Cheers
Karim
Le 27/06/2012 21:49, wxjmfauth@gmail.com a écrit :
> # -*- coding: cp1252 -*-
> # café.py
>
> import sys
> print(sys.version)
>
> sys.path.append('d:\\crème')
> import crème
> import sucré
>
> s = ' '.join(['un', 'café', crème.tag, sucré.tag])
> print(s)
>
> input(':')
>
> #------
> # .\sucré.py:
> # -*- coding: cp1252 -*-
> #tag = 'sucré'
>
> #------
> # d:\crème\crème.py
> # -*- coding: cp1252 -*-
> #tag = 'crème'
>
>
>
> # output
> # 3.3.0b1 (v3.3.0b1:e15c554cd43e+, Jun 26 2012, 20:30:00) [MSC v.1600 32 bit (Intel)]
> # un café crème sucré
> # :
>
> # :-)
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Py330b1, un café crème sucré wxjmfauth@gmail.com - 2012-06-27 12:49 -0700
Re: Py330b1, un café crème sucré Karim <kliateni@gmail.com> - 2012-06-27 22:48 +0200
Re: Py330b1, un café crème sucré gst <g.starck@gmail.com> - 2012-06-27 15:29 -0700
csiph-web