Re: caseless dictionary howto ?

2007-06-20 Thread Gabriel Genellina
En Wed, 20 Jun 2007 11:11:52 -0300, stef <[EMAIL PROTECTED]> escribió: > Carsten Haese wrote: >> On Wed, 2007-06-20 at 11:14 +0200, stef wrote: >>> Stefan Behnel wrote: >>> Serial_HW_Read = the name of a function >>> "F" = the type of that function (procedure / function / pseudo variable >>> / int

Re: caseless dictionary howto ?

2007-06-20 Thread Stefan Behnel
stef wrote: > I think you might be right, > but for a one-time/one-programmer program, > I think the documentation will be good enough. Famous last words. Stefan :) -- http://mail.python.org/mailman/listinfo/python-list

Re: caseless dictionary howto ?

2007-06-20 Thread stef
Carsten Haese wrote: > On Wed, 2007-06-20 at 11:14 +0200, stef wrote: > >> Stefan Behnel wrote: >> Serial_HW_Read = the name of a function >> "F" = the type of that function (procedure / function / pseudo variable >> / interrupt /..) >> "++" = the direction of each parameters, (input / output /

Re: caseless dictionary howto ?

2007-06-20 Thread Carsten Haese
On Wed, 2007-06-20 at 11:14 +0200, stef wrote: > Stefan Behnel wrote: > Serial_HW_Read = the name of a function > "F" = the type of that function (procedure / function / pseudo variable > / interrupt /..) > "++" = the direction of each parameters, (input / output / input+output ) > T = a tupple, c

Re: caseless dictionary howto ?

2007-06-20 Thread stef
Stefan Behnel wrote: > Stef Mientki wrote: > >> I need to search a piece of text and make all words that are equal >> (except their case) also equal in their case, based on the first >> occurrence. >> So I'm using a dictionary to store names and attributes of objects. >> As as I need to search o

Re: caseless dictionary howto ?

2007-06-20 Thread Stefan Behnel
Stef Mientki wrote: > I need to search a piece of text and make all words that are equal > (except their case) also equal in their case, based on the first > occurrence. > So I'm using a dictionary to store names and attributes of objects. > As as I need to search on the caseless name (so I've choo

Re: caseless dictionary howto ?

2007-06-20 Thread stef
Gabriel Genellina wrote: > En Tue, 19 Jun 2007 19:40:10 -0300, Steven Bethard > <[EMAIL PROTECTED]> escribió: > >> Stef Mientki wrote: >>> Evan Klitzke wrote: On 6/19/07, Stef Mientki <[EMAIL PROTECTED]> wrote: > > I need to search a piece of text and make all words that are equal >>>

Re: caseless dictionary howto ?

2007-06-20 Thread Steven Bethard
Gabriel Genellina wrote: > En Tue, 19 Jun 2007 19:40:10 -0300, Steven Bethard > <[EMAIL PROTECTED]> escribió: > >> Stef Mientki wrote: >>> Evan Klitzke wrote: On 6/19/07, Stef Mientki <[EMAIL PROTECTED]> wrote: > > I need to search a piece of text and make all words that are equal >>

Re: caseless dictionary howto ?

2007-06-19 Thread Gabriel Genellina
En Tue, 19 Jun 2007 19:40:10 -0300, Steven Bethard <[EMAIL PROTECTED]> escribió: > Stef Mientki wrote: >> Evan Klitzke wrote: >>> On 6/19/07, Stef Mientki <[EMAIL PROTECTED]> wrote: I need to search a piece of text and make all words that are equal (except their case) also equal i

Re: caseless dictionary howto ?

2007-06-19 Thread Steven Bethard
Stef Mientki wrote: > Evan Klitzke wrote: >> On 6/19/07, Stef Mientki <[EMAIL PROTECTED]> wrote: >>> hello, >>> >>> I need to search a piece of text and make all words that are equal >>> (except their case) also equal in their case, based on the first >>> occurrence. >>> So I'm using a dictionary

Re: caseless dictionary howto ?

2007-06-19 Thread Stef Mientki
Evan Klitzke wrote: > On 6/19/07, Stef Mientki <[EMAIL PROTECTED]> wrote: >> hello, >> >> I need to search a piece of text and make all words that are equal >> (except their case) also equal in their case, based on the first >> occurrence. >> So I'm using a dictionary to store names and attributes

Re: caseless dictionary howto ?

2007-06-19 Thread Evan Klitzke
On 6/19/07, Stef Mientki <[EMAIL PROTECTED]> wrote: > hello, > > I need to search a piece of text and make all words that are equal > (except their case) also equal in their case, based on the first occurrence. > So I'm using a dictionary to store names and attributes of objects. > As as I need to

caseless dictionary howto ?

2007-06-19 Thread Stef Mientki
hello, I need to search a piece of text and make all words that are equal (except their case) also equal in their case, based on the first occurrence. So I'm using a dictionary to store names and attributes of objects. As as I need to search on the caseless name (so I've choosen lowercase), My dic