Who maintains Tkinter?

SysProg - Nathan Paul Simons enigma at nmt.edu
Mon Oct 11 15:45:06 EDT 1999


-----BEGIN PGP SIGNED MESSAGE-----

	A few months ago, i attempted to get some answers to a question
about a bug with tkinter.  i received no reply.  Therefore, i would like
to know who maintains tkinter so that i could contact them directly.
	Just in case my last messages didn't get through all the noise,
and you think you can help, here it is again in full:

X-Newsreader: knews 1.0b.0
From: enigma at tcct.nmt.edu (SysProg - Nathan Paul Simons)
Subject: TkInter: class Grid missing remove?
Newsgroups: comp.lang.python

	I tried posting this once already, but apparently it didn't get
posted, or if it did, nobody replied, so I'm posting it again.

	Apparently, class Grid in tkinter (Tkinter.py) is missing the
grid_remove method.  Here is the relevant code, including the change:

class Grid:
	# Thanks to Masazumi Yoshikawa (yosikawa at isi.edu)
	def grid_configure(self, cnf={}, **kw):
		apply(self.tk.call, 
		      ('grid', 'configure', self._w) 
		      + self._options(cnf, kw))
	grid = configure = config = grid_configure
	bbox = grid_bbox = Misc.grid_bbox
	columnconfigure = grid_columnconfigure = Misc.grid_columnconfigure
	def grid_forget(self):
		self.tk.call('grid', 'forget', self._w)
	# AMS 10/28/98: was missing!  Added, following grid_forget().
	def grid_remove(self):
		self.tk.call('grid', 'remove', self._w)

I actually didn't find it.  Credit for this fix goes to 
Prof. Al Stavely <al at nmt.edu>.

Systems Programmer - Nathan Paul Simons
http://www.nmt.edu/~enigma   Speare 20   x5748

-----BEGIN PGP SIGNATURE-----
Version: 2.6.2

iQCVAwUBOAI+SIagi6ObDYzdAQEdjgP8C2ENMYcDrv0LsD2iD80Iie57nTsJJXKA
LuQioVE/DncbwoVvfZoOLduEPcG8IsdYll14ZPQNGrWv9wZ64v+zxRT6qF1ky72P
M1DMIcDHFNjV5G4esRkkCQpWohO+GQ6gjyE6gaf+u9hp675pc5o6JtckUTz41Gwr
2v+DKM//HmU=
=KzSe
-----END PGP SIGNATURE-----





More information about the Python-list mailing list