RE: question about python statements

2008-05-13 Thread Ohad Frand
','finally','for','from','global', 'if','import','pass','print','raise','return','try','while','yield'] Thanks, Ohad Frand -Original Message- From: Gary Herron [mailto:[EMAIL PROTECTED] Sent: Monday, May 12, 2008 10:41 PM To: Ohad Frand Cc: python-list@python.org Subject: Re: question about

Re: question about python statements

2008-05-13 Thread Gary Herron
To: Ohad Frand Cc: python-list@python.org Subject: Re: question about python statements Ohad Frand wrote: Hi I am looking for a way to programmically get a list of all python existing statements that I cannot access by __builtins__ or locals() (like [assert,break,class,...]) Thanks, Ohad

RE: question about python statements

2008-05-13 Thread Ohad Frand
[mailto:[EMAIL PROTECTED] Sent: Tuesday, May 13, 2008 11:11 AM To: Ohad Frand Cc: python-list@python.org Subject: Re: question about python statements Ohad Frand wrote: Hi Gary Sorry that I was not clear, I hope that this time I will explain myself better. I can get list of all builtin functions

Re: question about python statements

2008-05-13 Thread Terry Reedy
Ohad Frand [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] | Hi | Thanks a lot for your reply | I think the main uses for it is to study the language and to see that I | didn't miss anything else or that something is changed from one version | to another. The language manual lists and

question about python statements

2008-05-12 Thread Ohad Frand
Hi I am looking for a way to programmically get a list of all python existing statements that I cannot access by __builtins__ or locals() (like [assert,break,class,...]) Thanks, Ohad -- http://mail.python.org/mailman/listinfo/python-list

Re: question about python statements

2008-05-12 Thread Gary Herron
Ohad Frand wrote: Hi I am looking for a way to programmically get a list of all python existing statements that I cannot access by __builtins__ or locals() (like [assert,break,class,…]) Thanks, Ohad --

Re: question about python statements

2008-05-12 Thread Terry Reedy
Ohad Frand [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] | I am looking for a way to programmically get a list of all python | existing statements that I cannot access by __builtins__ or locals() | (like [assert,break,class,...]) You appear to want the keywords that begin

Re: question about python statements

2008-05-12 Thread George Sakkis
On May 12, 7:35 pm, Terry Reedy [EMAIL PROTECTED] wrote: Ohad Frand [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] | I am looking for a way to programmically get a list of all python | existing statements that I cannot access by __builtins__ or locals() | (like

Re: question about python statements

2008-05-12 Thread Terry Reedy
George Sakkis [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On May 12, 7:35 pm, Terry Reedy [EMAIL PROTECTED] wrote: Ohad Frand [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] | I am looking for a way to programmically get a list of all python | existing statements