Vine Linux バグトラッキングシステム

リビジョンを表示: 課題#749 全リビジョン ] 課題に戻る ]
概要 0000749: tkinter の一部機能が動作しません
リビジョン tomop による 2012-10-04 04:16
説明 tkinter を使って tkFileDialog の askopenfilename でファイルをダブルクリックしてもファイル名がとりこめません。

環境
VirtualBox3.0.4
Vine4.1 や Fedora6-11 Ubuntu8.10/9.04 では問題無く動作します。

#!/usr/bin/python
# -*- coding: utf -*-
import sys, os, time, re, locale, string
from Tkinter import *
from tkFileDialog import *

class Test:
    def __init__(self):
        self.tk = Tk()
        self.filename = askopenfilename()
        if not self.filename:
            return
        file = open(self.filename, 'r')
        while TRUE:
                line=file.readline()
                if not line:
                    break
                print(line)
        file.close()

if __name__ == "__main__":
    test = Test()
リビジョン anonymous による 2009-08-12 22:48
説明 tkinter を使って tkFileDialog の askopenfilename でファイルをダブルクリックしてもファイル名がとりこめません。

環境
VirtualBox3.0.4
Vine4.1 や Fedora6-11 Ubuntu8.10/9.04 では問題無く動作します。

#!/usr/bin/python
# -*- coding: utf -*-
import sys, os, time, re, locale, string
from Tkinter import *
from tkFileDialog import *

class Test:
    def __init__(self):
        self.tk = Tk()
        self.filename = askopenfilename()
        if not self.filename:
            return
        file = open(self.filename, 'r')
        while TRUE:
                line=file.readline()
                if not line:
                    break
                print(line)
        file.close()

if __name__ == "__main__":
    test = Test()


Copyright © 2000 - 2024 MantisBT Team
Copyright © 2012 - 2024 Project Vine
Powered by Mantis Bugtracker