Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #22413 > unrolled thread
| Started by | Chris Rebert <clp2@rebertia.com> |
|---|---|
| First post | 2012-03-31 00:59 -0700 |
| Last post | 2012-03-31 00:59 -0700 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: Tkinter: IDLE can't get out of mainloop Chris Rebert <clp2@rebertia.com> - 2012-03-31 00:59 -0700
| From | Chris Rebert <clp2@rebertia.com> |
|---|---|
| Date | 2012-03-31 00:59 -0700 |
| Subject | Re: Tkinter: IDLE can't get out of mainloop |
| Message-ID | <mailman.1174.1333180792.3037.python-list@python.org> |
On Sat, Mar 31, 2012 at 12:42 AM, Frederic Rentsch <anthra.norell@bluewin.ch> wrote: <snip> > If I run from a terminal things seem to work out. Is it standard > development practice to run code from a terminals ($ python program.py)? > What's the 'program.pyc' for if the source is compiled every time? The entire point of .pyc files is to avoid unnecessary re-byte-compilation from source code when possible: http://docs.python.org/tutorial/modules.html#compiled-python-files (i.e. there are times where the source is *not* recompiled.) Cheers, Chris
Back to top | Article view | comp.lang.python
csiph-web