Re: python under the hood

2006-10-20 Thread John Salerno
[EMAIL PROTECTED] wrote: > Hello. > > Is there any good information about python's internals and semantic? I > mean "under the hood". > For example, I want to understant what do these strings > > x = 10 > y = 10 > x = 20 > > mean (memory allocation for object? ctors? etc.) > Unfortynatly, I'm to

Re: python under the hood

2006-10-20 Thread A.T.Hofkamp
On 2006-10-20, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hello. > > Is there any good information about python's internals and semantic? I > mean "under the hood". Not exactly 'under the hood', but very close is the Python/C API. You can learn a great deal by reading the Extending&Embedding m

Re: python under the hood

2006-10-20 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: > Is there any good information about python's internals and semantic? I > mean "under the hood". > For example, I want to understant what do these strings > > x = 10 > y = 10 > x = 20 > > mean (memory allocation for object? ctors? etc.) reading this might help: http