Search Results

1
vote
2answers
98 views

WindowsError: priveledged instruction when saving a FreeImagePy Image in script, works in IDLE

I'm working on a program to do some image wrangling in Python for work. I'm using FreeImagePy because PIL doesn't support multi-page TIFFs. Whenever I try to save a file with it from my program I …
0
votes

WindowsError: priveledged instruction when saving a FreeImagePy Image in script, works in IDLE

That's what I thought too, but I figured it out a couple hours ago. Apparently if the directory/file I'm trying to write to doesn't exist, FreeImagePy isn't smart enough to create it (most of the …
3
votes

An executable Python app

There's also PyGTK, which is basically a Python wrapper for the Gnome Toolkit. I've found it easier to wrap my mind around than Tkinter, coming from …
0
votes

Print in terminal with colors using python ?

There's also a module called WConIO that does much the same thing. Unfortunately the author will probably not be able to build a Python 2.6 version any time soon. …
1
vote

Python tkinter label won’t change at beginning of function

How are you creating your Label? I have this little test setup: from Tkinter import * class LabelTest: def __init__(self, master): self.test = StringVar() self …
0
votes

What does the ‘shell’ argument in subprocess mean on Windows?

In addition to what was said in other answers, it is useful in practice if you want to open a file in the default viewer for that file type. For instance, if you want to open an HTML or PDF file, …
1
vote

How to use subprocess when multiple arguments contain spaces?

If you have spaces in the path, the easiest way I've found to get them interpreted properly is this. subprocess.call('""' + path + '""') I don't know why exactly i …
1
vote

Python tkInter Entry fun

I'm sure exactly what the reason is, but I have a hunch. The validation check is done every time the entry is edited. I did some testing and found that it does indeed execute, and can do all sort …