From owner-python@nl.linux.org Tue Feb  1 22:37:23 2000
Received: by humbolt.nl.linux.org id <S92178AbQBAVhL>;
	Tue, 1 Feb 2000 22:37:11 +0100
Received: from develop.diva.vet.uu.nl ([131.211.172.253]:60428 "EHLO
        develop.diva.vet.uu.nl") by humbolt.nl.linux.org with ESMTP
	id <S92166AbQBAVgi>; Tue, 1 Feb 2000 22:36:38 +0100
Received: (from faassen@localhost)
	by develop.diva.vet.uu.nl (8.9.3/8.9.3) id WAA10545
	for python@nl.linux.org; Tue, 1 Feb 2000 22:31:41 +0100
Date:   Tue, 1 Feb 2000 22:31:41 +0100
From:   Martijn Faassen <faassen@vet.uu.nl>
To:     python@nl.linux.org
Subject: Re: Wie zou er komen?
Message-ID: <20000201223141.A10542@vet.uu.nl>
References: <20000130111703.A2126@stopcontact.palga.uucp>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 1.0pre3us
In-Reply-To: <20000130111703.A2126@stopcontact.palga.uucp>
Sender: owner-python@nl.linux.org
Precedence: bulk
Reply-To: python@nl.linux.org
Return-Path: <owner-python@nl.linux.org>
X-Orcpt: rfc822;python-list

Gerrit Holl wrote:
> Hallo,
> 
> stel dat er een kleine Python bijeenkomst kwam ergens in een zaaltje
> in het midden des lands; wie zou er dan heengaan, als hij kon?
>

Ik zou komen, als ik terug was in Nederland (eind februari). Vrijdag
of in het weekend kan ik overdag, anders s'avonds.

Groeten,

Martijn
 

Nederlandse Python mailinglist, python@nl.linux.org
archief: http://mail.nl.linux.org/python/

From owner-python@nl.linux.org Tue Feb  1 22:41:13 2000
Received: by humbolt.nl.linux.org id <S92225AbQBAVlA>;
	Tue, 1 Feb 2000 22:41:00 +0100
Received: from develop.diva.vet.uu.nl ([131.211.172.253]:60684 "EHLO
        develop.diva.vet.uu.nl") by humbolt.nl.linux.org with ESMTP
	id <S92220AbQBAVkZ>; Tue, 1 Feb 2000 22:40:25 +0100
Received: (from faassen@localhost)
	by develop.diva.vet.uu.nl (8.9.3/8.9.3) id WAA10551
	for python@nl.linux.org; Tue, 1 Feb 2000 22:35:28 +0100
Date:   Tue, 1 Feb 2000 22:35:28 +0100
From:   Martijn Faassen <faassen@vet.uu.nl>
To:     python@nl.linux.org
Subject: Re: Wie zou er komen? (fwd)
Message-ID: <20000201223528.B10542@vet.uu.nl>
References: <Pine.LNX.3.96.1000130214454.435B-100000@localhost> <000b01bf6bc8$11282ca0$5029a8c0@jaappc> <20000131155108.A858@stopcontact.palga.uucp> <20000131175116.A25602@pino.selwerd.nl>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 1.0pre3us
In-Reply-To: <20000131175116.A25602@pino.selwerd.nl>
Sender: owner-python@nl.linux.org
Precedence: bulk
Reply-To: python@nl.linux.org
Return-Path: <owner-python@nl.linux.org>
X-Orcpt: rfc822;python-list

Remco Gerlich wrote:
> Op de Python Conference waren ongeveer 250 mensen, iirc. Hoeveel op de
> HCC? 150.000? Niet zo'n nuttige vergelijking :).

250 mensen is al ongeveer te veel om iedereen die je 'online' kent
gedag te zeggen. Maar het was gezellig. :)

HCC-is-iets-heel-anders-ly yours,

Martijn


Nederlandse Python mailinglist, python@nl.linux.org
archief: http://mail.nl.linux.org/python/

From owner-python@nl.linux.org Thu Feb  3 22:36:14 2000
Received: by humbolt.nl.linux.org id <S92187AbQBCVgD>;
	Thu, 3 Feb 2000 22:36:03 +0100
Received: from bork.demon.nl ([212.238.54.49]:21252 "EHLO bork.demon.nl")
	by humbolt.nl.linux.org with ESMTP id <S92197AbQBCVfh>;
	Thu, 3 Feb 2000 22:35:37 +0100
Received: from egbert by bork.demon.nl with local (Exim 2.05 #1 (Debian))
	id 12GTzd-0000AV-00; Thu, 3 Feb 2000 22:40:49 +0100
Date:   Thu, 3 Feb 2000 22:40:49 +0100
From:   Egbert Bouwman <egbert@bork.demon.nl>
To:     python@nl.linux.org
Subject: Toon de originele argumenten
Message-ID: <20000203224048.A636@bork>
Mail-Followup-To: python@nl.linux.org
References: <Pine.LNX.3.96.1000130214454.435B-100000@localhost> <000b01bf6bc8$11282ca0$5029a8c0@jaappc>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 0.95.3i
In-Reply-To: <000b01bf6bc8$11282ca0$5029a8c0@jaappc>; from Jaap Groot on Mon, Jan 31, 2000 at 09:49:21AM +0100
Sender: owner-python@nl.linux.org
Precedence: bulk
Reply-To: python@nl.linux.org
Return-Path: <owner-python@nl.linux.org>
X-Orcpt: rfc822;python-list

pythonners,
Ik probeer een functie zover te krijgen dat hij zelf de namen van de
argumenten laat zien waarmee hij is aangeroepen, bv:

   def aap(x,y,*z)
      return " Functie %s aangeroepen met ... 

Als ik die als volgt gebruik:
      a=1;b=2;c=3
      functie(a,9,b,c)

moet hij laten zien:
      Functie aap aangeroepen met a=1, 9=9, b=2, c=3            

Kan dat ? Hoe ?

egbert      
-- 
Egbert Bouwman - Keizersgracht 197 II - 1016 DS  Amsterdam - 020 6257991
========================================================================

Nederlandse Python mailinglist, python@nl.linux.org
archief: http://mail.nl.linux.org/python/

From owner-python@nl.linux.org Thu Feb  3 23:43:26 2000
Received: by humbolt.nl.linux.org id <S92197AbQBCWnN>;
	Thu, 3 Feb 2000 23:43:13 +0100
Received: from tarantula.giganet.nl ([212.125.143.1]:4370 "EHLO
        virtual1.giganet.nl") by humbolt.nl.linux.org with ESMTP
	id <S92183AbQBCWme>; Thu, 3 Feb 2000 23:42:34 +0100
Received: from dionysus.fw.cuci.nl (dionysus.fw.cuci.nl [10.0.0.4])
 by virtual1.giganet.nl (BuGless_3.01) with ESMTP id e13Mbhw19767; Thu, 3 Feb 2000 23:37:43 +0100
Received: from default (q99.din.cuci.nl [212.125.130.99])
 by dionysus.fw.cuci.nl (8.9.3/BuGless_2.02) with SMTP id XAA04976; Thu, 3 Feb 2000 23:37:42 +0100
Message-Id: <200002032237.XAA04976@dionysus.fw.cuci.nl>
From:   "Hans Nowak" <hnowak@cuci.nl>
To:     Egbert Bouwman <egbert@bork.demon.nl>, python@nl.linux.org
Date:   Thu, 3 Feb 2000 23:37:24 +0100
MIME-Version: 1.0
Content-type: text/plain; charset=US-ASCII
Content-transfer-encoding: 7BIT
Subject: Re: Toon de originele argumenten
In-reply-to: <20000203224048.A636@bork>
References: <000b01bf6bc8$11282ca0$5029a8c0@jaappc>; from Jaap Groot on Mon, Jan 31, 2000 at 09:49:21AM +0100
X-mailer: Pegasus Mail for Win32 (v3.01d)
Sender: owner-python@nl.linux.org
Precedence: bulk
Reply-To: python@nl.linux.org
Return-Path: <owner-python@nl.linux.org>
X-Orcpt: rfc822;python-list



On 3 Feb 00, at 22:40, Egbert Bouwman wrote:

> pythonners,
> Ik probeer een functie zover te krijgen dat hij zelf de namen van de
> argumenten laat zien waarmee hij is aangeroepen, bv:
> 
>    def aap(x,y,*z)
>       return " Functie %s aangeroepen met ... 
> 
> Als ik die als volgt gebruik:
>       a=1;b=2;c=3
>       functie(a,9,b,c)
> 
> moet hij laten zien:
>       Functie aap aangeroepen met a=1, 9=9, b=2, c=3            
> 
> Kan dat ? Hoe ?

Dat kan inderdaad... Kijk hier eens naar:

http://tor.dhs.org/~zephyrfalcon/snippets/source/326.py

HTH,

--Hans Nowak (zephyrfalcon@hvision.nl)
Homepage: http://fly.to/zephyrfalcon
You call me a masterless man. You are wrong. I am my own master.

Nederlandse Python mailinglist, python@nl.linux.org
archief: http://mail.nl.linux.org/python/

From owner-python@nl.linux.org Fri Feb  4 14:43:28 2000
Received: by humbolt.nl.linux.org id <S92183AbQBDNnP>;
	Fri, 4 Feb 2000 14:43:15 +0100
Received: from scribe.pobox.com ([208.210.124.35]:54798 "HELO scribe.pobox.com")
	by humbolt.nl.linux.org with SMTP id <S92177AbQBDNmh>;
	Fri, 4 Feb 2000 14:42:37 +0100
Received: from pobox.com (i123.asd.euronet.nl [194.134.9.159])
	by scribe.pobox.com (Postfix) with ESMTP id 370B0325C6
	for <python@nl.linux.org>; Fri,  4 Feb 2000 08:37:23 -0500 (EST)
Received: (qmail 28491 invoked from network); 4 Feb 2000 07:41:12 -0000
Received: from unknown (HELO stopcontact.palga.uucp) (qmailr@10.0.0.5)
  by 10.0.0.1 with SMTP; 4 Feb 2000 07:41:12 -0000
Received: (qmail 689 invoked by uid 102); 4 Feb 2000 07:41:10 -0000
Date:   Fri, 4 Feb 2000 08:41:10 +0100
From:   Gerrit Holl <gerrit.holl@pobox.com>
To:     python@nl.linux.org
Subject: Misbruik van andere bijeenkomsten
Message-ID: <20000204084110.A683@stopcontact.palga.uucp>
Mail-Followup-To: python@nl.linux.org
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 1.0i
Sender: owner-python@nl.linux.org
Precedence: bulk
Reply-To: python@nl.linux.org
Return-Path: <owner-python@nl.linux.org>
X-Orcpt: rfc822;python-list

Hallo,

als we elkaar willen zien zonder dat we zelf een bijeenkomst organiseren,
kunnen we misbruik maken van andere bijeenkomsten. Met het team van
www.nl.linux.org maken we vaak misbruik van NLLGG <www.nllgg.nl>
bijeenkomsten. Zijn hier mensen die wel eens Linux gebruiken? Die mensen
zouden dan misschien aanstaande zaterdag naar Utrecht kunnen gaan!
http://www.nllgg.nl/bijeenkomsten

Of waren mensen hier dat al van plan? Ik ben er in ieder geval!

ik-ben-er-een-beetje-laat-mee-ly y'rs - gerrit

Nederlandse Python mailinglist, python@nl.linux.org
archief: http://mail.nl.linux.org/python/

From owner-python@nl.linux.org Fri Feb  4 22:57:24 2000
Received: by humbolt.nl.linux.org id <S92207AbQBDV5A>;
	Fri, 4 Feb 2000 22:57:00 +0100
Received: from scribe.pobox.com ([208.210.124.35]:12550 "HELO scribe.pobox.com")
	by humbolt.nl.linux.org with SMTP id <S92163AbQBDV4t>;
	Fri, 4 Feb 2000 22:56:49 +0100
Received: from pobox.com (i033.asd.euronet.nl [194.134.9.193])
	by scribe.pobox.com (Postfix) with ESMTP id 60810325BD
	for <python@nl.linux.org>; Fri,  4 Feb 2000 16:51:26 -0500 (EST)
Received: (qmail 1914 invoked from network); 4 Feb 2000 21:12:54 -0000
Received: from unknown (HELO stopcontact.palga.uucp) (qmailr@10.0.0.5)
  by 10.0.0.1 with SMTP; 4 Feb 2000 21:12:54 -0000
Received: (qmail 18730 invoked by uid 102); 4 Feb 2000 21:12:51 -0000
Date:   Fri, 4 Feb 2000 22:12:51 +0100
From:   Gerrit Holl <gerrit.holl@pobox.com>
To:     python@nl.linux.org
Subject: Welke exception?
Message-ID: <20000204221251.A18717@stopcontact.palga.uucp>
Mail-Followup-To: python@nl.linux.org
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 1.0i
Sender: owner-python@nl.linux.org
Precedence: bulk
Reply-To: python@nl.linux.org
Return-Path: <owner-python@nl.linux.org>
X-Orcpt: rfc822;python-list

Hallo,

weet iemand welke exception er op niet-posix systemen wordt
geraised als je een file met een teken dat er niet in voor
mag komen probeert te lezen?

b.v.
>>> os.access('/bestaatniet', 4)
0
>>> os.access('/bestaatniet\0', 4)
Traceback (innermost last):
  File "<stdin>", line 1, in ?
TypeError: argument 1: expected string without null bytes, string found
>>> os.access('/!@#$%^&*()_+-={}[]:";\'<>,.\1\2\3', 4)
0

Krijg ik een TypeError? Of een OSError?

groeten,
Gerrit.

Nederlandse Python mailinglist, python@nl.linux.org
archief: http://mail.nl.linux.org/python/

From owner-python@nl.linux.org Sun Feb  6 22:52:43 2000
Received: by humbolt.nl.linux.org id <S92166AbQBFVw3>;
	Sun, 6 Feb 2000 22:52:29 +0100
Received: from bork.demon.nl ([212.238.54.49]:55557 "EHLO bork.demon.nl")
	by humbolt.nl.linux.org with ESMTP id <S92175AbQBFVwC>;
	Sun, 6 Feb 2000 22:52:02 +0100
Received: from egbert by bork.demon.nl with local (Exim 2.05 #1 (Debian))
	id 12HXBh-0000ex-00; Sun, 6 Feb 2000 20:17:37 +0100
Date:   Sun, 6 Feb 2000 20:17:36 +0100
From:   Egbert Bouwman <egbert@bork.demon.nl>
To:     python@nl.linux.org
Subject: builtin[s]
Message-ID: <20000206201735.A2530@bork>
Mail-Followup-To: python@nl.linux.org
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 0.95.3i
Sender: owner-python@nl.linux.org
Precedence: bulk
Reply-To: python@nl.linux.org
Return-Path: <owner-python@nl.linux.org>
X-Orcpt: rfc822;python-list

Welk systeem of verschil zit er achter het gebruik van de kreten
__builtins__ en __builtin__ ?

Het volgende brengt me in verwarring:
__builtins__ is de module met ingebouwde enz  ,
__builtins__.__name__ is een string met de waarde '__builtin__',
maar dir(__builtin__) toont weer dezelfde lijst als dir(__builtins__)

egbert
-- 
Egbert Bouwman - Keizersgracht 197 II - 1016 DS  Amsterdam - 020 6257991
========================================================================

Nederlandse Python mailinglist, python@nl.linux.org
archief: http://mail.nl.linux.org/python/

From owner-python@nl.linux.org Mon Feb  7 02:11:29 2000
Received: by humbolt.nl.linux.org id <S92164AbQBGBLQ>;
	Mon, 7 Feb 2000 02:11:16 +0100
Received: from flits104-37.flits.rug.nl ([129.125.104.37]:50441 "EHLO
        pino.selwerd.nl") by humbolt.nl.linux.org with ESMTP
	id <S92177AbQBGBKp>; Mon, 7 Feb 2000 02:10:45 +0100
Received: (from scarblac@localhost)
	by pino.selwerd.nl (8.8.7/8.8.7) id CAA06295
	for python@nl.linux.org; Mon, 7 Feb 2000 02:02:13 +0100
Date:   Mon, 7 Feb 2000 02:02:12 +0100
From:   Remco Gerlich <scarblac@pino.selwerd.nl>
To:     python@nl.linux.org
Subject: Re: builtin[s]
Message-ID: <20000207020212.A6279@pino.selwerd.nl>
References: <20000206201735.A2530@bork>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 1.0pre4i
In-Reply-To: <20000206201735.A2530@bork>; from egbert@bork.demon.nl on Sun, Feb 06, 2000 at 08:17:36PM +0100
Sender: owner-python@nl.linux.org
Precedence: bulk
Reply-To: python@nl.linux.org
Return-Path: <owner-python@nl.linux.org>
X-Orcpt: rfc822;python-list

On Sun, Feb 06, 2000 at 08:17:36PM +0100, Egbert Bouwman wrote:
> Welk systeem of verschil zit er achter het gebruik van de kreten
> __builtins__ en __builtin__ ?
> 
> Het volgende brengt me in verwarring:
> __builtins__ is de module met ingebouwde enz  ,
> __builtins__.__name__ is een string met de waarde '__builtin__',
> maar dir(__builtin__) toont weer dezelfde lijst als dir(__builtins__)

Ik vind het ook gek.

>>> __builtins__
<module '__builtin__' (built-in)>
>>> __builtin__
Traceback (innermost last)
  File "<stdin>", line 1, in ?
NameError: __builtin__
>>> import __builtin__
>>> __builtins__ is __builtin__
1

__builtin__ wordt bij de initialisatie blijkbaar ge-import, niet
onder die naam, maar onder __builtins__. Je kunt __builtin__ ook
apart importen. Dan is het inderdaad dezelfde module. *Vaag*.

Het is waarschijnlijk nuttiger deze vraag te stellen in comp.lang.python,
in de hoop dat Tim Peters de vage anecdote kent (of heeft meegemaakt) die
hiervan wel de verklaring zal zijn...


-- 
Remco Gerlich,  scarblac@pino.selwerd.nl

Nederlandse Python mailinglist, python@nl.linux.org
archief: http://mail.nl.linux.org/python/

From owner-python@nl.linux.org Mon Feb  7 15:35:56 2000
Received: by humbolt.nl.linux.org id <S92168AbQBGOfo>;
	Mon, 7 Feb 2000 15:35:44 +0100
Received: from bork.demon.nl ([212.238.54.49]:64772 "EHLO bork.demon.nl")
	by humbolt.nl.linux.org with ESMTP id <S92164AbQBGOfM>;
	Mon, 7 Feb 2000 15:35:12 +0100
Received: from egbert by bork.demon.nl with local (Exim 2.05 #1 (Debian))
	id 12HooT-0000He-00; Mon, 7 Feb 2000 15:06:49 +0100
Date:   Mon, 7 Feb 2000 15:06:49 +0100
From:   Egbert Bouwman <egbert@bork.demon.nl>
To:     python@nl.linux.org
Subject: Re: builtin[s]
Message-ID: <20000207150648.A1085@bork>
Mail-Followup-To: python@nl.linux.org
References: <20000206201735.A2530@bork> <20000207020212.A6279@pino.selwerd.nl>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 0.95.3i
In-Reply-To: <20000207020212.A6279@pino.selwerd.nl>; from Remco Gerlich on Mon, Feb 07, 2000 at 02:02:12AM +0100
Sender: owner-python@nl.linux.org
Precedence: bulk
Reply-To: python@nl.linux.org
Return-Path: <owner-python@nl.linux.org>
X-Orcpt: rfc822;python-list

On Mon, Feb 07, 2000 at 02:02:12AM +0100, Remco Gerlich wrote:
> 
> Het is waarschijnlijk nuttiger deze vraag te stellen in comp.lang.python,
> in de hoop dat Tim Peters de vage anecdote kent (of heeft meegemaakt) die
> hiervan wel de verklaring zal zijn...
> 
Een paar distributies terug ben ik gestopt met het lezen van news.
Was wat veel van het goede. En ik heb de indruk dat systematisch door
een boek of andere docu heengaan heel wat efficienter is.

Maar als iedereen nu zegt dat die legendarische Tim Peters alleen al
de moeite waard is ...

egbert
-- 
Egbert Bouwman - Keizersgracht 197 II - 1016 DS  Amsterdam - 020 6257991
========================================================================

Nederlandse Python mailinglist, python@nl.linux.org
archief: http://mail.nl.linux.org/python/

From owner-python@nl.linux.org Mon Feb  7 16:06:26 2000
Received: by humbolt.nl.linux.org id <S92168AbQBGPGD>;
	Mon, 7 Feb 2000 16:06:03 +0100
Received: from flits104-37.flits.rug.nl ([129.125.104.37]:58125 "EHLO
        pino.selwerd.nl") by humbolt.nl.linux.org with ESMTP
	id <S92164AbQBGPFk>; Mon, 7 Feb 2000 16:05:40 +0100
Received: (from scarblac@localhost)
	by pino.selwerd.nl (8.8.7/8.8.7) id PAA07050
	for python@nl.linux.org; Mon, 7 Feb 2000 15:57:04 +0100
Date:   Mon, 7 Feb 2000 15:57:03 +0100
From:   Remco Gerlich <scarblac@pino.selwerd.nl>
To:     python@nl.linux.org
Subject: Re: builtin[s]
Message-ID: <20000207155703.A7008@pino.selwerd.nl>
References: <20000206201735.A2530@bork> <20000207020212.A6279@pino.selwerd.nl> <20000207150648.A1085@bork>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 1.0pre4i
In-Reply-To: <20000207150648.A1085@bork>; from egbert@bork.demon.nl on Mon, Feb 07, 2000 at 03:06:49PM +0100
Sender: owner-python@nl.linux.org
Precedence: bulk
Reply-To: python@nl.linux.org
Return-Path: <owner-python@nl.linux.org>
X-Orcpt: rfc822;python-list

On Mon, Feb 07, 2000 at 03:06:49PM +0100, Egbert Bouwman wrote:
> On Mon, Feb 07, 2000 at 02:02:12AM +0100, Remco Gerlich wrote:
> > 
> > Het is waarschijnlijk nuttiger deze vraag te stellen in comp.lang.python,
> > in de hoop dat Tim Peters de vage anecdote kent (of heeft meegemaakt) die
> > hiervan wel de verklaring zal zijn...
> > 
> Een paar distributies terug ben ik gestopt met het lezen van news.
> Was wat veel van het goede. En ik heb de indruk dat systematisch door
> een boek of andere docu heengaan heel wat efficienter is.
> 
> Maar als iedereen nu zegt dat die legendarische Tim Peters alleen al
> de moeite waard is ...

De nieuwsgroep is ook een mailing list & vice versa, dus je hoeft geen
news te gaan gebruiken.

Zend een mail met "subscribe" in de body naar python-list-request@python.org .
Zijn wel veel mails. 80 per dag of zo nu?

Maar goed, ik heb eens met Deja gezocht, en het was al eerder besproken.

De korte versie:
__builtins__ is vreemd. Het werkt anders afhankelijk van je script,
of je interactive werkt, etc. Nooit gebruiken.

Gebruik de module __builtin__. Die module moet je eerst importen.


PS Over de web site - is al iemand die tutorial aan het maken?
-- 
Remco Gerlich,  scarblac@pino.selwerd.nl

Nederlandse Python mailinglist, python@nl.linux.org
archief: http://mail.nl.linux.org/python/

From owner-python@nl.linux.org Mon Feb  7 16:16:46 2000
Received: by humbolt.nl.linux.org id <S92168AbQBGPQ2>;
	Mon, 7 Feb 2000 16:16:28 +0100
Received: from terra.geo.uu.nl ([131.211.29.16]:10495 "EHLO terra.geo.uu.nl")
	by humbolt.nl.linux.org with ESMTP id <S92164AbQBGPPy>;
	Mon, 7 Feb 2000 16:15:54 +0100
Received: from smtp1.xs4all.nl (smtp1.xs4all.nl [194.109.127.48])
	by terra.geo.uu.nl (8.9.3/8.9.3/TvZ) with ESMTP id QAA25357
	for <python@nl.linux.org>; Mon, 7 Feb 2000 16:11:09 +0100 (MET)
Received: from xs4.xs4all.nl (xs4.xs4all.nl [194.109.6.45])
	by smtp1.xs4all.nl (8.9.3/8.9.3) with ESMTP id QAA03490
	for <python@nl.linux.org>; Mon, 7 Feb 2000 16:10:08 +0100 (CET)
Received: (from thomas@localhost)
	by xs4.xs4all.nl (8.9.0/8.9.0) id QAA02194
	for python@nl.linux.org; Mon, 7 Feb 2000 16:10:08 +0100 (CET)
Date:   Mon, 7 Feb 2000 16:10:08 +0100
From:   Thomas Wouters <thomas@xs4all.net>
To:     python@nl.linux.org
Subject: Re: builtin[s]
Message-ID: <20000207161008.J23471@xs4all.nl>
References: <20000206201735.A2530@bork> <20000207020212.A6279@pino.selwerd.nl> <20000207150648.A1085@bork>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 1.0.1i
In-Reply-To: <20000207150648.A1085@bork>; from egbert@bork.demon.nl on Mon, Feb 07, 2000 at 03:06:49PM +0100
Sender: owner-python@nl.linux.org
Precedence: bulk
Reply-To: python@nl.linux.org
Return-Path: <owner-python@nl.linux.org>
X-Orcpt: rfc822;python-list

On Mon, Feb 07, 2000 at 03:06:49PM +0100, Egbert Bouwman wrote:

> > Het is waarschijnlijk nuttiger deze vraag te stellen in comp.lang.python,
> > in de hoop dat Tim Peters de vage anecdote kent (of heeft meegemaakt) die
> > hiervan wel de verklaring zal zijn...

> Een paar distributies terug ben ik gestopt met het lezen van news.
> Was wat veel van het goede. En ik heb de indruk dat systematisch door
> een boek of andere docu heengaan heel wat efficienter is.

> Maar als iedereen nu zegt dat die legendarische Tim Peters alleen al
> de moeite waard is ...

Tim Peters is de moeite waard, de rest van de vaste posters ook ;) Je kan
c.l.py ook als mailinglist krijgen, of als dat teveel volume is (tussen de
25 en de 150 postings per dag ofzo ?) is er ook nog een digest-lijst van.

De mailinglist (zo lees ik 'm) is misschien minder systematisch dan een goed
boek, maar het is ook een grote stroom ideeen, anecdotes, humor, etc. Niet
alleen over Python.

-- 
Thomas Wouters <thomas@xs4all.net>

Hi! I'm a .signature virus! copy me into your .signature file to help me spread!

Nederlandse Python mailinglist, python@nl.linux.org
archief: http://mail.nl.linux.org/python/

From owner-python@nl.linux.org Wed Feb  9 11:21:44 2000
Received: by humbolt.nl.linux.org id <S92225AbQBIKVd>;
	Wed, 9 Feb 2000 11:21:33 +0100
Received: from bork.demon.nl ([212.238.54.49]:7172 "EHLO bork.demon.nl")
	by humbolt.nl.linux.org with ESMTP id <S92203AbQBIKUy>;
	Wed, 9 Feb 2000 11:20:54 +0100
Received: from egbert by bork.demon.nl with local (Exim 2.05 #1 (Debian))
	id 12IELN-0000Cj-00; Tue, 8 Feb 2000 18:22:29 +0100
Date:   Tue, 8 Feb 2000 18:22:29 +0100
From:   Egbert Bouwman <egbert@bork.demon.nl>
To:     python@nl.linux.org
Subject: Mailing lists
Message-ID: <20000208182228.A777@bork>
Mail-Followup-To: python@nl.linux.org
References: <20000206201735.A2530@bork> <20000207020212.A6279@pino.selwerd.nl> <20000207150648.A1085@bork> <20000207161008.J23471@xs4all.nl>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 0.95.3i
In-Reply-To: <20000207161008.J23471@xs4all.nl>; from Thomas Wouters on Mon, Feb 07, 2000 at 04:10:08PM +0100
Sender: owner-python@nl.linux.org
Precedence: bulk
Reply-To: python@nl.linux.org
Return-Path: <owner-python@nl.linux.org>
X-Orcpt: rfc822;python-list

Zo. De mail van python-list@python.org komt inmiddels binnen,
bedankt voor de op mij uitgeoefende druk.

Maar naar welke lijst moet ik nu mijn python vragen opsturen ?
egbert
-- 
Egbert Bouwman - Keizersgracht 197 II - 1016 DS  Amsterdam - 020 6257991
========================================================================

Nederlandse Python mailinglist, python@nl.linux.org
archief: http://mail.nl.linux.org/python/

From owner-python@nl.linux.org Wed Feb  9 18:09:43 2000
Received: by humbolt.nl.linux.org id <S92226AbQBIRJ0>;
	Wed, 9 Feb 2000 18:09:26 +0100
Received: from scribe.pobox.com ([208.210.124.35]:57606 "HELO scribe.pobox.com")
	by humbolt.nl.linux.org with SMTP id <S92193AbQBIRIy>;
	Wed, 9 Feb 2000 18:08:54 +0100
Received: from pobox.com (i227.asd.euronet.nl [194.134.12.159])
	by scribe.pobox.com (Postfix) with ESMTP id CA100325E7
	for <python@nl.linux.org>; Wed,  9 Feb 2000 12:03:28 -0500 (EST)
Received: (qmail 5927 invoked from network); 9 Feb 2000 15:49:08 -0000
Received: from softdnserror (HELO stopcontact.palga.uucp) (qmailr@10.0.0.5)
  by softdnserror with SMTP; 9 Feb 2000 15:49:08 -0000
Received: (qmail 1252 invoked by uid 102); 9 Feb 2000 15:49:07 -0000
Date:   Wed, 9 Feb 2000 16:49:07 +0100
From:   Gerrit Holl <gerrit.holl@pobox.com>
To:     python@nl.linux.org
Subject: Re: Mailing lists
Message-ID: <20000209164907.A1248@stopcontact.palga.uucp>
Mail-Followup-To: python@nl.linux.org
References: <20000206201735.A2530@bork> <20000207020212.A6279@pino.selwerd.nl> <20000207150648.A1085@bork> <20000207161008.J23471@xs4all.nl> <20000208182228.A777@bork>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 1.0i
In-Reply-To: <20000208182228.A777@bork>; from egbert@bork.demon.nl on Tue, Feb 08, 2000 at 06:22:29PM +0100
Sender: owner-python@nl.linux.org
Precedence: bulk
Reply-To: python@nl.linux.org
Return-Path: <owner-python@nl.linux.org>
X-Orcpt: rfc822;python-list

Egbert Bouwman wrote on 950030549:
> Zo. De mail van python-list@python.org komt inmiddels binnen,
> bedankt voor de op mij uitgeoefende druk.
> 
> Maar naar welke lijst moet ik nu mijn python vragen opsturen ?

Naar python@nl.linux.org, en als je geen (voldoende) antwoord krijgt
naar python-list@python.org.

groeten,
Gerrit.

-- 
Homepage: http://www.nl.linux.org/~gerrit
-----BEGIN GEEK CODE BLOCK----- http://www.geekcode.com
Version: 3.12
GCS dpu s-:-- a14 C++++>$ UL++ P--- L+++ E--- W++ N o? K? w--- !O
!M !V PS+ PE? Y? PGP-- t- 5? X? R- tv- b+(++) DI D+ G++ !e !r !y
-----END GEEK CODE BLOCK----- moc.edockeeg.www//:ptth

Nederlandse Python mailinglist, python@nl.linux.org
archief: http://mail.nl.linux.org/python/

From owner-python@nl.linux.org Thu Feb 10 21:36:07 2000
Received: by humbolt.nl.linux.org id <S92225AbQBJUf5>;
	Thu, 10 Feb 2000 21:35:57 +0100
Received: from scribe.pobox.com ([208.210.124.35]:46345 "HELO scribe.pobox.com")
	by humbolt.nl.linux.org with SMTP id <S92166AbQBJUfX>;
	Thu, 10 Feb 2000 21:35:23 +0100
Received: from pobox.com (i205.asd.euronet.nl [194.134.12.137])
	by scribe.pobox.com (Postfix) with ESMTP id 48AD0325C2
	for <python@nl.linux.org>; Thu, 10 Feb 2000 15:30:01 -0500 (EST)
Received: (qmail 18280 invoked from network); 10 Feb 2000 20:28:41 -0000
Received: from unknown (HELO stopcontact.palga.uucp) (qmailr@10.0.0.5)
  by 10.0.0.1 with SMTP; 10 Feb 2000 20:28:41 -0000
Received: (qmail 8995 invoked by uid 102); 10 Feb 2000 20:28:39 -0000
Date:   Thu, 10 Feb 2000 21:28:39 +0100
From:   Gerrit Holl <gerrit.holl@pobox.com>
To:     python@nl.linux.org
Subject: Tim Peters
Message-ID: <20000210212839.A8961@stopcontact.palga.uucp>
Mail-Followup-To: python@nl.linux.org
References: <38A1AACB.8A5D0933@callware.com> <87tj5t$ngs$2@newshost.accu.uu.nl>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 1.0i
In-Reply-To: <87tj5t$ngs$2@newshost.accu.uu.nl>; from m.faassen@vet.uu.nl on Thu, Feb 10, 2000 at 05:43:25AM +0000
Sender: owner-python@nl.linux.org
Precedence: bulk
Reply-To: python@nl.linux.org
Return-Path: <owner-python@nl.linux.org>
X-Orcpt: rfc822;python-list

Martijn Faassen schreef in comp.lang.python:
> No-I-don't-look-like-a-klingon-but-Tim-Peters-IS-invisible-ly yours,

Bij mij op school loopt een leraar rond, die Tim Peters heet...
Kent iemand Tims nationaliteit? Hij schijnt een beetje Nederlands te
kennen, net als deze duitsgevende leraar.
Weet iemand hoeveel mensen die "Tim Peters" heten er ongeveer op deze
wereld rondlopen? 10? 100? 250?

Oh nee, hij kan het niet zijn :(. Hij is niet onzichtbaar :(.
Jammer!

een-vertaling-van-tims-afscheidsgroet-is-dit-lijk uw'r - gerrit

Nederlandse Python mailinglist, python@nl.linux.org
archief: http://mail.nl.linux.org/python/

From owner-python@nl.linux.org Sat Feb 12 19:04:39 2000
Received: by humbolt.nl.linux.org id <S92252AbQBLSEF>;
	Sat, 12 Feb 2000 19:04:05 +0100
Received: from bork.demon.nl ([212.238.54.49]:8198 "EHLO bork.demon.nl")
	by humbolt.nl.linux.org with ESMTP id <S92250AbQBLSDS>;
	Sat, 12 Feb 2000 19:03:18 +0100
Received: from egbert by bork.demon.nl with local (Exim 2.05 #1 (Debian))
	id 12JKq2-00021G-00; Fri, 11 Feb 2000 19:30:42 +0100
Date:   Fri, 11 Feb 2000 19:30:41 +0100
From:   Egbert Bouwman <egbert@bork.demon.nl>
To:     python@nl.linux.org
Subject: Waar is glob
Message-ID: <20000211193040.A7757@bork>
Mail-Followup-To: python@nl.linux.org
References: <20000206201735.A2530@bork> <20000207020212.A6279@pino.selwerd.nl>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 0.95.3i
In-Reply-To: <20000207020212.A6279@pino.selwerd.nl>; from Remco Gerlich on Mon, Feb 07, 2000 at 02:02:12AM +0100
Sender: owner-python@nl.linux.org
Precedence: bulk
Reply-To: python@nl.linux.org
Return-Path: <owner-python@nl.linux.org>
X-Orcpt: rfc822;python-list

In mijn Python 1.5.1 (debian slink) zit geen glob:

>>> import glob
ImportError: No module named glob

Met fnmatch gebeurt hetzelfde.
Wat zit hier achter ? 
Ik kan me nu redden met os.listdir() en re, maar glob is wel zo handig.
-- 
Egbert Bouwman - Keizersgracht 197 II - 1016 DS  Amsterdam - 020 6257991
========================================================================

Nederlandse Python mailinglist, python@nl.linux.org
archief: http://mail.nl.linux.org/python/

From owner-python@nl.linux.org Sat Feb 12 20:34:10 2000
Received: by humbolt.nl.linux.org id <S92255AbQBLTdu>;
	Sat, 12 Feb 2000 20:33:50 +0100
Received: from scribe.pobox.com ([208.210.124.35]:20242 "HELO scribe.pobox.com")
	by humbolt.nl.linux.org with SMTP id <S92251AbQBLTdE>;
	Sat, 12 Feb 2000 20:33:04 +0100
Received: from pobox.com (i438.asd.euronet.nl [194.134.111.39])
	by scribe.pobox.com (Postfix) with ESMTP id B7B703258D
	for <python@nl.linux.org>; Sat, 12 Feb 2000 14:27:42 -0500 (EST)
Received: (qmail 4624 invoked from network); 12 Feb 2000 19:15:19 -0000
Received: from unknown (HELO stopcontact.palga.uucp) (qmailr@10.0.0.5)
  by 10.0.0.1 with SMTP; 12 Feb 2000 19:15:19 -0000
Received: (qmail 5134 invoked by uid 102); 12 Feb 2000 19:15:17 -0000
Date:   Sat, 12 Feb 2000 20:15:17 +0100
From:   Gerrit Holl <gerrit.holl@pobox.com>
To:     python@nl.linux.org
Subject: Re: Waar is glob
Message-ID: <20000212201517.A5104@stopcontact.palga.uucp>
Mail-Followup-To: python@nl.linux.org
References: <20000206201735.A2530@bork> <20000207020212.A6279@pino.selwerd.nl> <20000211193040.A7757@bork>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 1.0i
In-Reply-To: <20000211193040.A7757@bork>; from egbert@bork.demon.nl on Fri, Feb 11, 2000 at 07:30:41PM +0100
Sender: owner-python@nl.linux.org
Precedence: bulk
Reply-To: python@nl.linux.org
Return-Path: <owner-python@nl.linux.org>
X-Orcpt: rfc822;python-list

Egbert Bouwman wrote on 950293841:
> In mijn Python 1.5.1 (debian slink) zit geen glob:
> 
> >>> import glob
> ImportError: No module named glob
> 
> Met fnmatch gebeurt hetzelfde.
> Wat zit hier achter ? 
> Ik kan me nu redden met os.listdir() en re, maar glob is wel zo handig.

Waarschijnlijk is je installatie een beetje kapot :(

Doe eens:
% locate glob.py

Als je niets vind, dan is je installatie verkeerd.
Als je wel wat vind, dan moet je de directory daarvan in je PYTHONPATH
zetten.

groeten,
Gerrit.

-- 
Homepage: http://www.nl.linux.org/~gerrit
-----BEGIN GEEK CODE BLOCK----- http://www.geekcode.com
Version: 3.12
GCS dpu s-:-- a14 C++++>$ UL++ P--- L+++ E--- W++ N o? K? w--- !O
!M !V PS+ PE? Y? PGP-- t- 5? X? R- tv- b+(++) DI D+ G++ !e !r !y
-----END GEEK CODE BLOCK----- moc.edockeeg.www//:ptth

Nederlandse Python mailinglist, python@nl.linux.org
archief: http://mail.nl.linux.org/python/

From owner-python@nl.linux.org Sat Feb 12 23:34:23 2000
Received: by humbolt.nl.linux.org id <S92264AbQBLWd5>;
	Sat, 12 Feb 2000 23:33:57 +0100
Received: from scribe.pobox.com ([208.210.124.35]:44548 "HELO scribe.pobox.com")
	by humbolt.nl.linux.org with SMTP id <S92263AbQBLWdT>;
	Sat, 12 Feb 2000 23:33:19 +0100
Received: from pobox.com (i410.asd.euronet.nl [194.134.111.11])
	by scribe.pobox.com (Postfix) with ESMTP id 3E3103258D
	for <python@nl.linux.org>; Sat, 12 Feb 2000 17:27:52 -0500 (EST)
Received: (qmail 6273 invoked from network); 12 Feb 2000 22:24:17 -0000
Received: from unknown (HELO stopcontact.palga.uucp) (qmailr@10.0.0.5)
  by 10.0.0.1 with SMTP; 12 Feb 2000 22:24:17 -0000
Received: (qmail 6834 invoked by uid 102); 12 Feb 2000 22:24:15 -0000
Date:   Sat, 12 Feb 2000 23:24:15 +0100
From:   Gerrit Holl <gerrit.holl@pobox.com>
To:     python@nl.linux.org
Subject: Tim Peters
Message-ID: <20000212232415.A6830@stopcontact.palga.uucp>
Mail-Followup-To: python@nl.linux.org
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 1.0i
Sender: owner-python@nl.linux.org
Precedence: bulk
Reply-To: python@nl.linux.org
Return-Path: <owner-python@nl.linux.org>
X-Orcpt: rfc822;python-list

http://www.cyberspace.org/~timbot

:)))))

-- 
Homepage: http://www.nl.linux.org/~gerrit
-----BEGIN GEEK CODE BLOCK----- http://www.geekcode.com
Version: 3.12
GCS dpu s-:-- a14 C++++>$ UL++ P--- L+++ E--- W++ N o? K? w--- !O
!M !V PS+ PE? Y? PGP-- t- 5? X? R- tv- b+(++) DI D+ G++ !e !r !y
-----END GEEK CODE BLOCK----- moc.edockeeg.www//:ptth

Nederlandse Python mailinglist, python@nl.linux.org
archief: http://mail.nl.linux.org/python/

From owner-python@nl.linux.org Sat Feb 12 23:50:12 2000
Received: by humbolt.nl.linux.org id <S92256AbQBLWtt>;
	Sat, 12 Feb 2000 23:49:49 +0100
Received: from flits104-37.flits.rug.nl ([129.125.104.37]:32018 "EHLO
        pino.selwerd.nl") by humbolt.nl.linux.org with ESMTP
	id <S92251AbQBLWtR>; Sat, 12 Feb 2000 23:49:17 +0100
Received: (from scarblac@localhost)
	by pino.selwerd.nl (8.8.7/8.8.7) id XAA19910
	for python@nl.linux.org; Sat, 12 Feb 2000 23:40:08 +0100
Date:   Sat, 12 Feb 2000 23:40:08 +0100
From:   Remco Gerlich <scarblac@pino.selwerd.nl>
To:     python@nl.linux.org
Subject: Re: Tim Peters
Message-ID: <20000212234008.A19902@pino.selwerd.nl>
References: <20000212232415.A6830@stopcontact.palga.uucp>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 1.0pre4i
In-Reply-To: <20000212232415.A6830@stopcontact.palga.uucp>; from gerrit.holl@pobox.com on Sat, Feb 12, 2000 at 11:24:15PM +0100
Sender: owner-python@nl.linux.org
Precedence: bulk
Reply-To: python@nl.linux.org
Return-Path: <owner-python@nl.linux.org>
X-Orcpt: rfc822;python-list

On Sat, Feb 12, 2000 at 11:24:15PM +0100, Gerrit Holl wrote:
> http://www.cyberspace.org/~timbot
> 
> :)))))

Ik kan me niet voorstellen dat die links van onze Tim zijn.

-- 
Remco Gerlich,  scarblac@pino.selwerd.nl

Nederlandse Python mailinglist, python@nl.linux.org
archief: http://mail.nl.linux.org/python/

From owner-python@nl.linux.org Sun Feb 13 10:29:36 2000
Received: by humbolt.nl.linux.org id <S92261AbQBMJ3R>;
	Sun, 13 Feb 2000 10:29:17 +0100
Received: from scribe.pobox.com ([208.210.124.35]:29960 "HELO scribe.pobox.com")
	by humbolt.nl.linux.org with SMTP id <S92260AbQBMJ2j>;
	Sun, 13 Feb 2000 10:28:39 +0100
Received: from pobox.com (i432.asd.euronet.nl [194.134.111.33])
	by scribe.pobox.com (Postfix) with ESMTP id 9B1F032597
	for <python@nl.linux.org>; Sun, 13 Feb 2000 04:23:17 -0500 (EST)
Received: (qmail 8616 invoked from network); 13 Feb 2000 09:14:48 -0000
Received: from softdnserror (HELO stopcontact.palga.uucp) (qmailr@10.0.0.5)
  by softdnserror with SMTP; 13 Feb 2000 09:14:48 -0000
Received: (qmail 2210 invoked by uid 102); 13 Feb 2000 09:14:47 -0000
Date:   Sun, 13 Feb 2000 10:14:47 +0100
From:   Gerrit Holl <gerrit.holl@pobox.com>
To:     python@nl.linux.org
Subject: Re: Tim Peters
Message-ID: <20000213101447.A2206@stopcontact.palga.uucp>
Mail-Followup-To: python@nl.linux.org
References: <20000212232415.A6830@stopcontact.palga.uucp> <20000212234008.A19902@pino.selwerd.nl>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 1.0i
In-Reply-To: <20000212234008.A19902@pino.selwerd.nl>; from scarblac@pino.selwerd.nl on Sat, Feb 12, 2000 at 11:40:08PM +0100
Sender: owner-python@nl.linux.org
Precedence: bulk
Reply-To: python@nl.linux.org
Return-Path: <owner-python@nl.linux.org>
X-Orcpt: rfc822;python-list

Remco Gerlich wrote on 950395208:
> On Sat, Feb 12, 2000 at 11:24:15PM +0100, Gerrit Holl wrote:
> > http://www.cyberspace.org/~timbot
> > 
> > :)))))
> 
> Ik kan me niet voorstellen dat die links van onze Tim zijn.

Klopt :)

-- 
Homepage: http://www.nl.linux.org/~gerrit
-----BEGIN GEEK CODE BLOCK----- http://www.geekcode.com
Version: 3.12
GCS dpu s-:-- a14 C++++>$ UL++ P--- L+++ E--- W++ N o? K? w--- !O
!M !V PS+ PE? Y? PGP-- t- 5? X? R- tv- b+(++) DI D+ G++ !e !r !y
-----END GEEK CODE BLOCK----- moc.edockeeg.www//:ptth

Nederlandse Python mailinglist, python@nl.linux.org
archief: http://mail.nl.linux.org/python/

