Re: Translating keywords

2008-04-08 Thread Lie
On Apr 7, 9:54 pm, Steve Holden <[EMAIL PROTECTED]> wrote: > Ronn Ross wrote: > > This is my first post and I'm new to Python. How would someone go about > > adding keywords to Python? It would be great to add support for > > Esperanto keywords in the language instead of English being the only > >

Re: Translating keywords

2008-04-07 Thread Gabriel Genellina
En Tue, 08 Apr 2008 03:28:54 -0300, Arnaud Delobelle <[EMAIL PROTECTED]> escribió: > On Apr 8, 6:47 am, Arnaud Delobelle <[EMAIL PROTECTED]> wrote: > [...] >> Although I would use ∀ and ∃ as aliases for all() >> and exists() :) > > I mean all() and any() of course Yes, I thought about that usag

Re: Translating keywords

2008-04-07 Thread Gabriel Genellina
En Tue, 08 Apr 2008 03:03:13 -0300, Torsten Bronger <[EMAIL PROTECTED]> escribió: > Gabriel Genellina writes: >> >> Python 3 allows for unicode identifiers, but I don'k know any >> plans for using unicode keywords too. Looks funny: >> >> ∀ x ∈ values: >> if x ∉ forbidden ∧ x ≠ y: >> print(

Re: Translating keywords

2008-04-07 Thread Arnaud Delobelle
On Apr 8, 6:47 am, Arnaud Delobelle <[EMAIL PROTECTED]> wrote: [...] > Although I would use ∀ and ∃ as aliases for all() > and exists() :) I mean all() and any() of course -- Arnaud -- http://mail.python.org/mailman/listinfo/python-list

Re: Translating keywords

2008-04-07 Thread Torsten Bronger
Hallöchen! Gabriel Genellina writes: > [...] > > Python 3 allows for unicode identifiers, but I don'k know any > plans for using unicode keywords too. Looks funny: > > ∀ x ∈ values: > if x ∉ forbidden ∧ x ≠ y: > print(x, Γ(x), √(x)) > print(∑(values)) > near = λ a,b,ε=0.01: a-ε ≤ b ≤ a+ε A

Re: Translating keywords

2008-04-07 Thread Arnaud Delobelle
On Apr 8, 3:47 am, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > Python 3 allows for unicode identifiers, but I don'k know any plans for   > using unicode keywords too. Looks funny: > > ∀ x ∈ values: >    if x ∉ forbidden ∧ x ≠ y: >      print(x, Γ(x), √(x)) > print(∑(values)) > near = λ a,b,ε=0

Re: Translating keywords

2008-04-07 Thread Terry Reedy
"Gabriel Genellina" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] | En Mon, 07 Apr 2008 14:59:08 -0300, Terry Reedy <[EMAIL PROTECTED]> | escribió: | > If you want other-language keywords, you should either use a translator | > processor or an editor that will do keyword substitutio

Re: Translating keywords

2008-04-07 Thread Gabriel Genellina
En Mon, 07 Apr 2008 14:59:08 -0300, Terry Reedy <[EMAIL PROTECTED]> escribió: > "Ronn Ross" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > | This is my first post and I'm new to Python. How would someone go about > | adding keywords to Python? It would be great to add support for