Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #35672 > unrolled thread

Re: learning curve

Started byMRAB <python@mrabarnett.plus.com>
First post2012-12-28 02:41 +0000
Last post2012-12-28 02:41 +0000
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.


Contents

  Re: learning curve MRAB <python@mrabarnett.plus.com> - 2012-12-28 02:41 +0000

#35672 — Re: learning curve

FromMRAB <python@mrabarnett.plus.com>
Date2012-12-28 02:41 +0000
SubjectRe: learning curve
Message-ID<mailman.1380.1356662513.29569.python-list@python.org>
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!

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web