Re: How to read source code of python?

2010-06-11 Thread Lee
On Jun 10, 10:26 am, Giampaolo Rodolà wrote: > 2010/6/10 Leon : > > > Hi, there, > > I'm trying to read the source code of python. > > I read around, and am kind of lost, so where to start? > > > Any comments are welcomed, thanks in advance. > > -- > >http://mail.python.org/mailman/listinfo/python

Re: How to read source code of python?

2010-06-11 Thread Lee
On Jun 10, 7:53 am, Floris Bruynooghe wrote: > On Jun 10, 8:55 am, Thomas Jollans wrote: > > > On 06/10/2010 07:25 AM, Qijing Li wrote: > > > > Thanks for your reply. > > > I'm trying to understand python language deeply and  use it efficiently. > > > For example: How the operator "in" works on l

Re: How to read source code of python?

2010-06-10 Thread Giampaolo Rodolà
2010/6/10 Leon : > Hi, there, > I'm trying to read the source code of python. > I read around, and am kind of lost, so where to start? > > Any comments are welcomed, thanks in advance. > -- > http://mail.python.org/mailman/listinfo/python-list > If you're interested in understanding Python interna

Re: How to read source code of python?

2010-06-10 Thread Floris Bruynooghe
On Jun 10, 8:55 am, Thomas Jollans wrote: > On 06/10/2010 07:25 AM, Qijing Li wrote: > > > Thanks for your reply. > > I'm trying to understand python language deeply and  use it efficiently. > > For example: How the operator "in" works on list? the running time is > > be O(n)?  if my list is sorte

Re: How to read source code of python?

2010-06-10 Thread pradeepbpin
On Jun 10, 1:15 pm, News123 wrote: > Leon wrote: > > Hi, there, > > I'm trying to read the source code of python.dd > > I read around, and am kind of lost, so where to start? > > > Any comments are welcomed, thanks in advance. > > I use my favourite text editor with syntax highlighting. > > Next t

Re: How to read source code of python?

2010-06-10 Thread News123
Leon wrote: > Hi, there, > I'm trying to read the source code of python.dd > I read around, and am kind of lost, so where to start? > > Any comments are welcomed, thanks in advance. I use my favourite text editor with syntax highlighting. Next to it I use a web browser with pydoc and google. I

Re: How to read source code of python?

2010-06-10 Thread Thomas Jollans
On 06/10/2010 07:25 AM, Qijing Li wrote: > Thanks for your reply. > I'm trying to understand python language deeply and use it efficiently. > For example: How the operator "in" works on list? the running time is > be O(n)? if my list is sorted, what the running time would be? There is excellent

Re: How to read source code of python?

2010-06-10 Thread Ian Kelly
On Wed, Jun 9, 2010 at 11:54 PM, Benjamin Kaplan wrote: > On Wed, Jun 9, 2010 at 10:25 PM, Qijing Li wrote: >> Thanks for your reply. >> I'm trying to understand python language deeply and  use it efficiently. >> For example: How the operator "in" works on list? the running time is >> be O(n)?  i

Re: How to read source code of python?

2010-06-09 Thread Benjamin Kaplan
On Wed, Jun 9, 2010 at 10:25 PM, Qijing Li wrote: > Thanks for your reply. > I'm trying to understand python language deeply and  use it efficiently. > For example: How the operator "in" works on list? the running time is > be O(n)?  if my list is sorted, what the running time would be? > > Still

Re: How to read source code of python?

2010-06-09 Thread Qijing Li
Thanks for your reply. I'm trying to understand python language deeply and use it efficiently. For example: How the operator "in" works on list? the running time is be O(n)? if my list is sorted, what the running time would be? On Wed, Jun 9, 2010 at 5:59 PM, geremy condra wrote: > On Wed, J

Re: How to read source code of python?

2010-06-09 Thread Terry Reedy
On 6/9/2010 8:35 PM, Steven D'Aprano wrote: On Wed, 09 Jun 2010 17:28:28 -0700, Leon wrote: Hi, there, I'm trying to read the source code of python. I read around, and am kind of lost, so where to start? Any comments are welcomed, thanks in advance. How would you read any other source code?

Re: How to read source code of python?

2010-06-09 Thread Shashwat Anand
And if you are interested in source and have no particular goal, start with stdlib. On Thu, Jun 10, 2010 at 6:39 AM, rantingrick wrote: > On Jun 9, 7:28 pm, Leon wrote: > > > I'm trying to read the source code of python. > > I read around, and am kind of lost, so where to start? > > Leon, if yo

Re: How to read source code of python?

2010-06-09 Thread rantingrick
On Jun 9, 7:28 pm, Leon wrote: > I'm trying to read the source code of python. > I read around, and am kind of lost, so where to start? Leon, if you are a Python newbie and cannot understand/comprehend Python's syntax read the tutorial first. -- http://mail.python.org/mailman/listinfo/python-li

Re: How to read source code of python?

2010-06-09 Thread geremy condra
On Wed, Jun 9, 2010 at 5:28 PM, Leon wrote: > Hi, there, > I'm trying to read the source code of python. > I read around, and am kind of lost, so where to start? > > Any comments are welcomed, thanks in advance. Are you trying to find out more about python-the-language, or the interpreter, or the

Re: How to read source code of python?

2010-06-09 Thread Steven D'Aprano
On Wed, 09 Jun 2010 17:28:28 -0700, Leon wrote: > Hi, there, > I'm trying to read the source code of python. I read around, and am kind > of lost, so where to start? > > Any comments are welcomed, thanks in advance. How would you read any other source code? -- Steven -- http://mail.python.o

How to read source code of python?

2010-06-09 Thread Leon
Hi, there, I'm trying to read the source code of python. I read around, and am kind of lost, so where to start? Any comments are welcomed, thanks in advance. -- http://mail.python.org/mailman/listinfo/python-list