Path: csiph.com!usenet.pasdenom.info!news.izac.org!ohm.izac.org!nntpfeed.proxad.net!proxad.net!feeder1-2.proxad.net!usenet-fr.net!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed2.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.014 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'argument': 0.05; 'interpreter': 0.05; 'output': 0.05; 'attribute': 0.07; 'mentioned,': 0.07; 'attributes': 0.09; 'sake': 0.09; 'random': 0.14; 'expect,': 0.16; 'googling': 0.16; "object's": 0.16; 'object),': 0.16; 'subject:fails': 0.16; 'subject:when': 0.16; 'sat,': 0.16; 'wrote:': 0.18; 'previously': 0.22; 'print': 0.22; 'header:User-Agent:1': 0.23; 'posts': 0.26; 'post': 0.26; 'header :In-Reply-To:1': 0.27; "doesn't": 0.30; 'display': 0.35; 'received:209.85': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'impression': 0.36; 'replies': 0.36; 'next': 0.36; 'list': 0.37; 'received:209': 0.37; 'step': 0.37; 'whatever': 0.38; 'to:addr :python-list': 0.38; 'to:addr:python.org': 0.39; 'either': 0.39; 'is.': 0.60; 'content-disposition:inline': 0.62; 'kind': 0.63; 'skip:n 10': 0.64; 'received:190': 0.69; '8bit%:100': 0.72; 'obvious': 0.74; 'yourself': 0.78; 'subject:get': 0.81; '05,': 0.84; 'received:190.163': 0.84; '2013': 0.98 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:subject:message-id:references :mime-version:content-type:content-disposition :content-transfer-encoding:in-reply-to:user-agent; bh=IEWGKgTWQfxOeYttnGp569lijuOB0xVMN3nRGrXqk+4=; b=ij3x7aPov4pxIj7fGbjh1qs0uuFZrXp4nXGt+8jh1QKJGf1aR7hM3y8v1PeawuMBgb al2PE9djXyz/5arG7lxfjtNdTZL6AbR5ytKTxUEBXzpTVf3kdQCBJlvidrDKJ4LPoq5g S7VXCzgMbm4H6N48rZQUOCfyA7Irtzap3IVIxbo907on97C/gasSgrF1YuXGyIIq6wZy CJ5rXcmVHCmtGTlfa7bhHqSehnbbpMcbhpoci0Ppbra8s3yJhdOd3ZcDOo9qzEMsg4Zm LHsa0eRHYdNUdVHr0zerIvJg0ohU2jLqWcYnmlLFwDaX6QXfKk+mWve/Qac25RMO9bI/ Uq7g== X-Gm-Message-State: ALoCoQl/wQBq/VpHLmKl4p+DgvErVJmzTosSJOgf8KswAsvnOh4U250SBRHI33OvObZGxK6MIFL/ X-Received: by 10.236.191.72 with SMTP id f48mr15446193yhn.32.1380985614239; Sat, 05 Oct 2013 08:06:54 -0700 (PDT) Date: Sat, 5 Oct 2013 12:06:49 -0300 From: Zero Piraeus To: python-list@python.org Subject: Re: Select fails when cookie tried to get a numeric value References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-PGP-Key: http://etiol.net/pubkey.asc User-Agent: Mutt/1.5.21 (2010-09-15) 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: 39 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1380987077 news.xs4all.nl 15886 [2001:888:2000:d::a6]:52713 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:56196 : On Sat, Oct 05, 2013 at 05:40:23PM +0300, Νίκος Αλεξόπουλος wrote: > When i print CookieID i was under the impression i would see a > random number like '5369' but instead it display the follwong. > > Set-Cookie: ID="Set-Cookie: ID=5369" On Sat, Oct 05, 2013 at 05:47:54PM +0300, Νίκος Αλεξόπουλος wrote: > When i print CookieID i was under the impression i would see a > random number like '5369' but instead it display the follwong. > > Set-Cookie: ID="Set-Cookie: ID=5369" Please don't give identical or near-identical replies to multiple messages in the thread; other members of the list are either reading all of your posts or none of them, so repeating yourself like this is only going to irritate whoever is reading. Since printing cookieID doesn't produce the output you expect, the obvious next step is to look up the documentation for whatever kind of object it is. You can find out its type with type(cookieID) ... and then once you know that type (let's say for the sake of argument it's a Biscuit object), find out about that type of object's attributes either by googling for the docs or at the interpreter with help(Biscuit) As previously mentioned, there's likely to be some kind of 'value' attribute that will return just the number you want. -[]z. -- Zero Piraeus: post scriptum http://etiol.net/pubkey.asc