Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #35672
| Date | 2012-12-28 02:41 +0000 |
|---|---|
| From | MRAB <python@mrabarnett.plus.com> |
| Subject | Re: learning curve |
| References | <50DCF3DE.7030600@gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.1380.1356662513.29569.python-list@python.org> (permalink) |
On 2012-12-28 01:20, Verde Denim wrote: > Just getting into Py coding and not understanding why this code doesn't > seem to do anything - > > # File: dialog2.py > import dialog_handler > > class MyDialog(dialog_handler.Dialog): [snip] > > # File: dialog_handler.py > > from Tkinter import * > import os > > class Dialog(Toplevel): [snip] You've defined 2 classes, but that's all. At no point did you ask it to do anything with them!
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: learning curve MRAB <python@mrabarnett.plus.com> - 2012-12-28 02:41 +0000
csiph-web