Re: Draft PEP on RSON configuration file format

2010-03-01 Thread Patrick Maupin
On Mon, Mar 1, 2010 at 8:02 PM, Kirill Simonov wrote: BTW, congratulations on slogging through the YAML grammar to generate such a good working C library! That must have been a tremendous effort. Regards, Pat -- http://mail.python.org/mailman/listinfo/python-list

New User

2010-03-01 Thread Niranjan Kumar Das
Hello Group, I am starting to programme in python 1st time. Just thought i will ask the group members about some well known useful books. I am looking for books at two level. a) For beginers b) For Advaced user Appreciate your help and suggestion in the matter. Thanks, Niranjan -- http://mail.p

Re: Draft PEP on RSON configuration file format

2010-03-01 Thread Kirill Simonov
Patrick Maupin wrote: Kirill: Thank you for your constructive criticism. This is the gem that made it worthwhile to post my document. I think all of your points are spot-on, and I will be fixing the documentation. You are welcome. Despite what others have been saying, I don't think this ar

Re: Draft PEP on RSON configuration file format

2010-03-01 Thread Kirill Simonov
Patrick Maupin wrote: On Mon, Mar 1, 2010 at 8:02 PM, Kirill Simonov wrote: BTW, congratulations on slogging through the YAML grammar to generate such a good working C library! That must have been a tremendous effort. The trick was to completely ignore the grammar described in the specifica

Re: New User

2010-03-01 Thread Shashwat Anand
for beginners : http://openbookproject.net/thinkcs/python/english2e/index.html python cookbook - 2 by alex martelli is fantastic if you have your basics cleared. On Tue, Mar 2, 2010 at 8:09 AM, Niranjan Kumar Das wrote: > Hello Group, > I am starting to programme in python 1st time. Just thought

Adding to a module's __dict__?

2010-03-01 Thread Roy Smith
>From inside a module, I want to add a key-value pair to the module's __dict__. I know I can just do: FOO = 'bar' at the module top-level, but I've got 'FOO' as a string and what I really need to do is __dict__['Foo'] = 'bar' When I do that, I get "NameError: name '__dict__' is not defined".

Re: Draft PEP on RSON configuration file format

2010-03-01 Thread Terry Reedy
On 3/1/2010 7:56 PM, Patrick Maupin wrote: On Mar 1, 5:57 pm, Erik Max Francis wrote: Patrick Maupin wrote: This not only seriously stretching the meaning of the term "superset" (as Python is most definitely not even remotely a superset of JSON), but Well, you are entitled to that opinion, bu

Re: Adding to a module's __dict__?

2010-03-01 Thread Chris Rebert
On Mon, Mar 1, 2010 at 8:27 PM, Roy Smith wrote: > >From inside a module, I want to add a key-value pair to the module's > __dict__.  I know I can just do: > > FOO = 'bar' > > at the module top-level, but I've got 'FOO' as a string and what I > really need to do is > > __dict__['Foo'] = 'bar' > >

How to find an COM object in using of pywin32

2010-03-01 Thread Steven Woody
Hi, I want to interactive with an OLE application with pywin32. The problem is I get totally no idea how to find the object in OLEView and how to figure out it's interface. With pywin32's example, I even don't understand that in the below statement, win32com.client.Dispatch('Excel.Application

[no subject]

2010-03-01 Thread Vaidehi Pawar
http://adimteknikhirdavat.com/James.html The INTERNET now has a personality. YOURS! See your Yahoo! Homepage. http://in.yahoo.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: taking python enterprise level?...

2010-03-01 Thread D'Arcy J.M. Cain
On Mon, 1 Mar 2010 16:20:06 -0800 (PST) mdipierro wrote: > Joins are the bottle neck of most web app that relay on relational > databases. That is why non-relational databases such as Google App > Engine, CouchDB, MongoDB do not even support Joins. You have to try to > minimize joins as much as po

Re: Draft PEP on RSON configuration file format

2010-03-01 Thread Arnaud Delobelle
Erik Max Francis writes: > Patrick Maupin wrote: >> On Feb 28, 9:18 pm, Steven D'Aprano > Wait a minute... if JSON is too >> hard to edit, and RSON is a *superset* of >>> JSON, that means by definition every JSON file is also a valid RSON file. >>> Since JSON is too hard to manually edit, so is R

<    1   2