Re: Question regarding the standard library?

2008-08-19 Thread Hussein B
On Aug 19, 8:10 am, George Sakkis <[EMAIL PROTECTED]> wrote: > On Aug 19, 8:16 am, Fredrik Lundh <[EMAIL PROTECTED]> wrote: > > > > > Hussein B wrote: > > > Is the standard library of Python is compiled (you know, the pyc > > > thing)? > > > Is it allowed to edit the source code of the standard lib

Re: Question regarding the standard library?

2008-08-19 Thread Fredrik Lundh
Hussein B wrote: Is the standard library compiled? the portions are written in Python are compiled to PYC files, just like modules you write yourself are automatically compiled to PYC files when you import them. (why not just look in the Python installation tree? it's all there for you t

Re: Question regarding the standard library?

2008-08-19 Thread George Sakkis
On Aug 19, 8:16 am, Fredrik Lundh <[EMAIL PROTECTED]> wrote: > Hussein B wrote: > > Is the standard library of Python is compiled (you know, the pyc > > thing)? > > Is it allowed to edit the source code of the standard library? > > I'm not talking about submitting the modified code to Python sourc

Re: Question regarding the standard library?

2008-08-19 Thread Hussein B
On Aug 19, 7:16 am, Fredrik Lundh <[EMAIL PROTECTED]> wrote: > Hussein B wrote: > > Is the standard library of Python is compiled (you know, the pyc > > thing)? > > Is it allowed to edit the source code of the standard library? > > I'm not talking about submitting the modified code to Python source

Re: Question regarding the standard library?

2008-08-19 Thread Fredrik Lundh
Hussein B wrote: Is the standard library of Python is compiled (you know, the pyc thing)? Is it allowed to edit the source code of the standard library? I'm not talking about submitting the modified code to Python source code repository, I'm just asking if some one can edit the source code in hi

Question regarding the standard library?

2008-08-19 Thread Hussein B
Hey, Is the standard library of Python is compiled (you know, the pyc thing)? Is it allowed to edit the source code of the standard library? I'm not talking about submitting the modified code to Python source code repository, I'm just asking if some one can edit the source code in his own machine.