This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Tix bug 2643483
Type: behavior Stage:
Components: Windows Versions: Python 3.2, Python 3.3, Python 2.7
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: Gary.Levin, loewis, ned.deily, terry.reedy
Priority: normal Keywords:

Created on 2011-08-04 02:33 by Gary.Levin, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (6)
msg141622 - (view) Author: Gary Levin (Gary.Levin) Date: 2011-08-04 02:33
A bug from Tkinter is present in the current release.

https://sourceforge.net/tracker/index.php?func=detail&aid=2643483&group_id=5649&atid=105649

8tixFileEntry:OpenFile dialogtype tk_chooseDirectory only opens once.

There is a bug fix in the code.  I tried it in my copy and it does fix the problem.  Perhaps it can be propagated in Python 3 releases.  Or push for tkinter to update their copy.
msg141623 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2011-08-04 08:24
I think you are confusing the Tix widget set, an independent Tk-based project, with Tkinter, the Python interface to Tk, which is part of Python.  The problem you linked to appears to be a Tix issue.  That code is not part of Python.  It needs to be addressed by the Tix project.
msg141631 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2011-08-04 15:59
Ah, I see now that the question is actually about the python.org Windows installers which, as a service to the user, pull in the external source of Tix during the build.  (Tix is not included in the Python source distribution nor with the Mac OS X installers.)  Martin, any interest in adding a Tix patch to the installer build?
msg141682 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2011-08-05 20:10
Gary, did you mean that there is a fix in the Tix bug report?
(the addition of '-'?)
If so, what has it not been applied to the Tix repository?
Is it still active?
Once changed there, the change should be propagated to the Python distribution.
msg141685 - (view) Author: Gary Levin (Gary.Levin) Date: 2011-08-05 20:35
Terry, I am just a new casual user.

The fix described in the Tix report (adding the '-') fixed the problem for me.  But the report (2009-02-26) is after the most recent Tix build (8.4.3	2008-03-17).  I don't know if it was ever added to the repository.   

Is Tix still being supported?  No, the last CVS change was FileEnt.tcl revision 1.7 by hobbs, Sun Mar 28 02:44:57 2004.  Looks pretty dead to me.

If not, a good reason for me to skip Tix and use tkinter and ttk.  There have been recent commits (last commit on 2011-06-30).
msg191222 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-06-15 18:41
I do not think there is any pydev interest in separately patching tix, any more than we patch tk itself.
History
Date User Action Args
2022-04-11 14:57:20adminsetgithub: 56899
2013-06-15 18:41:33terry.reedysetstatus: open -> closed
resolution: rejected -> not a bug
messages: + msg191222
2011-08-05 20:35:37Gary.Levinsetmessages: + msg141685
2011-08-05 20:10:54terry.reedysetstatus: pending -> open
nosy: + terry.reedy
messages: + msg141682

2011-08-04 15:59:37ned.deilysetstatus: closed -> pending
versions: + Python 2.7, Python 3.2, Python 3.3, - Python 3.4
nosy: + loewis

messages: + msg141631

components: + Windows, - Tkinter
2011-08-04 08:24:05ned.deilysetstatus: open -> closed
title: tkinter bug 2643483 -> Tix bug 2643483
nosy: + ned.deily

messages: + msg141623

resolution: rejected
2011-08-04 02:33:31Gary.Levincreate