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


Groups > comp.lang.python > #51912

Re: Removing matching items from a list?

Path csiph.com!usenet.pasdenom.info!gegeweb.org!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 <python-python-list@m.gmane.org>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.031
X-Spam-Evidence '*H*': 0.94; '*S*': 0.00; 'lines,': 0.07; 'answer?': 0.09; 'counting': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'code?': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'exception': 0.16; 'wrote:': 0.18; 'code,': 0.22; 'header:User-Agent:1': 0.23; 'question': 0.24; 'post': 0.26; 'gets': 0.27; 'header:X -Complaints-To:1': 0.27; 'tried': 0.27; 'point': 0.28; "doesn't": 0.30; 'see,': 0.30; 'subject:list': 0.30; 'asked': 0.31; 'code': 0.31; 'apparently': 0.31; 'bugs': 0.33; 'actual': 0.34; 'subject:from': 0.34; 'could': 0.34; 'doing': 0.36; 'next': 0.36; 'charset:us-ascii': 0.36; 'subject:?': 0.36; 'list': 0.37; 'expected': 0.38; 'filter': 0.38; 'question,': 0.38; 'to:addr :python-list': 0.38; 'track': 0.38; 'delete': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'how': 0.40; 'blank': 0.60; 'full': 0.61; 'times': 0.62; "you've": 0.63; 'email addr:gmail.com': 0.63; 'show': 0.63; 'happen': 0.63; 'temporary': 0.65; 'person.': 0.69; 'answer:': 0.84; 'nonsense.': 0.84
X-Injected-Via-Gmane http://gmane.org/
To python-list@python.org
From Dave Angel <davea@davea.name>
Subject Re: Removing matching items from a list?
Date Sun, 4 Aug 2013 01:53:02 +0000 (UTC)
References <6c0bdea5-23bd-4854-8016-4bf0af3b7d0e@googlegroups.com> <ea1e47f9-23ae-4db3-9b1d-d9cac348bfb9@googlegroups.com>
Mime-Version 1.0
Content-Type text/plain; charset=US-ASCII
Content-Transfer-Encoding 7bit
X-Gmane-NNTP-Posting-Host 174.32.174.32
User-Agent XPN/1.2.6 (Street Spirit ; Linux)
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 <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.176.1375581207.1251.python-list@python.org> (permalink)
Lines 36
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1375581207 news.xs4all.nl 15886 [2001:888:2000:d::a6]:55153
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:51912

Show key headers only | View raw


kevin4fong@gmail.com wrote:
     <snip>
>
> Would you also happen to know how I could set up a list that keeps track of the removed sets?
>

Let's see, i think that makes 5 times you've asked the same question,
counting the dups you apparently sent to the same person.

Instead of writing all these messages, could you perhaps actually write
some code?  Show us that you've learned something, and that you actually
tried to get the next answer?

Frame your question around one of the following scenarios:

Here's some code I wrote, and it doesn't work because:

  1) it gets an exception (show full traceback)
  2) it hangs
  3) it gets this answer:  show actual answer
      instead of what I expected:  show what you expected to get

And when you post the code, paste it into your message, don't point to
some temporary website.

And if you must use googlegroups, please edit your messages to hide the
bugs in googlegarbage.  Go into the message and tediously delete all the
stupid extra blank lines, because one person doing it is better than
1000 people seeing double-spaced nonsense.  Many people just won't see a
message sent from googlegroups because they filter them out.


-- 
DaveA

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


Thread

Removing matching items from a list? kevin4fong@gmail.com - 2013-08-03 13:12 -0700
  Re: Removing matching items from a list? kevin4fong@gmail.com - 2013-08-03 13:16 -0700
  Re: Removing matching items from a list? woooee@gmail.com - 2013-08-03 13:27 -0700
  Re: Removing matching items from a list? Roy Smith <roy@panix.com> - 2013-08-03 17:02 -0400
  Re: Removing matching items from a list? MRAB <python@mrabarnett.plus.com> - 2013-08-03 22:06 +0100
  Re: Removing matching items from a list? Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-08-03 22:37 +0000
    Re: Removing matching items from a list? Roy Smith <roy@panix.com> - 2013-08-03 19:06 -0400
      Re: Removing matching items from a list? Chris Angelico <rosuav@gmail.com> - 2013-08-04 00:35 +0100
      Re: Removing matching items from a list? Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-08-04 00:25 +0000
        Re: Removing matching items from a list? kevin4fong@gmail.com - 2013-08-03 17:33 -0700
        Re: Removing matching items from a list? kevin4fong@gmail.com - 2013-08-03 17:34 -0700
    Re: Removing matching items from a list? kevin4fong@gmail.com - 2013-08-03 17:23 -0700
    Re: Removing matching items from a list? kevin4fong@gmail.com - 2013-08-03 17:29 -0700
      Re: Removing matching items from a list? Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-08-04 00:40 +0000
    Re: Removing matching items from a list? kevin4fong@gmail.com - 2013-08-03 17:32 -0700
  Re: Removing matching items from a list? kevin4fong@gmail.com - 2013-08-03 17:33 -0700
    Re: Removing matching items from a list? Dave Angel <davea@davea.name> - 2013-08-04 01:53 +0000

csiph-web