Re: where are the .pyc files?

2007-09-17 Thread Marc 'BlackJack' Rintsch
On Mon, 17 Sep 2007 01:23:20 +, Summercool wrote: > On Sep 16, 10:36 am, Marc 'BlackJack' Rintsch <[EMAIL PROTECTED]> wrote: >> >> The `*.pyc` files are usually only created when you import a module, not >> when a module is run directly. > > how come a program that runs directly doesn't need

Re: where are the .pyc files?

2007-09-17 Thread Summercool
On Sep 16, 6:56 pm, Steve Holden <[EMAIL PROTECTED]> wrote: > Summercool wrote: > > how come a program that runs directly doesn't need to be optimized > > into bytecode first? Or... is it that the interpreter will just run > > the program as it goes by, without ever generating a .pyc file? So >

Re: where are the .pyc files?

2007-09-16 Thread Steve Holden
Summercool wrote: > On Sep 16, 10:36 am, Marc 'BlackJack' Rintsch <[EMAIL PROTECTED]> wrote: >> The `*.pyc` files are usually only created when you import a module, not >> when a module is run directly. > > how come a program that runs directly doesn't need to be optimized > into bytecode first?

Re: where are the .pyc files?

2007-09-16 Thread Summercool
On Sep 16, 10:36 am, Marc 'BlackJack' Rintsch <[EMAIL PROTECTED]> wrote: > > The `*.pyc` files are usually only created when you import a module, not > when a module is run directly. how come a program that runs directly doesn't need to be optimized into bytecode first? Or... is it that the inter

Re: where are the .pyc files?

2007-09-16 Thread Marc 'BlackJack' Rintsch
On Sun, 16 Sep 2007 17:28:30 +, Summercool wrote: > so i have always heard of the .pyc files but for some reason i > don't see them on the Windows platform... when i have a program > called try.py and after running it for ages, i still don't have a > try.pyc file in my folder even if i

Re: where are the .pyc files?

2007-09-16 Thread Dustan
On Sep 16, 12:28 pm, Summercool <[EMAIL PROTECTED]> wrote: > so i have always heard of the .pyc files but for some reason i > don't see them on the Windows platform... when i have a program > called try.py and after running it for ages, i still don't have a > try.pyc file in my folder even

where are the .pyc files?

2007-09-16 Thread Summercool
so i have always heard of the .pyc files but for some reason i don't see them on the Windows platform... when i have a program called try.py and after running it for ages, i still don't have a try.pyc file in my folder even if i turn the "show hidden file" to on. -- http://mail.python.org