User Tofystedeth - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T02:38:56Zhttp://stackoverflow.com/feeds/user/31801http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1019782/python-tkinter-entry-fun/1020087#10200871Answer by Tofystedeth for Python tkInter Entry funTofystedeth2009-06-19T21:25:00Z2009-06-19T21:52:27Z<p>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 sorts of things during the validation every time. What causes it to stop working correctly is when you edit it from within the validatecommand function. This causes it to stop calling the validate function any further. I guess it no longer recognizes further edits to the entry value or something.</p>
<p>lgal Serban seems to have the behind the scenes info on why this occurs.</p>
http://stackoverflow.com/questions/804995/how-to-use-subprocess-when-multiple-arguments-contain-spaces/806971#8069711Answer by Tofystedeth for How to use subprocess when multiple arguments contain spaces?Tofystedeth2009-04-30T13:41:10Z2009-04-30T13:41:10Z<p>If you have spaces in the path, the easiest way I've found to get them interpreted properly is this.</p>
<pre><code>subprocess.call('""' + path + '""')
</code></pre>
<p>I don't know why exactly it needs double double quotes, but that is what works.</p>
http://stackoverflow.com/questions/771816/what-does-the-shell-argument-in-subprocess-mean-on-windows/772687#7726870Answer by Tofystedeth for What does the 'shell' argument in subprocess mean on Windows?Tofystedeth2009-04-21T13:51:24Z2009-04-21T13:51:24Z<p>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, but will not know which browser or viewer is installed on the systems it will be run on, or have no guarantees as to the path to the executable, you can simply pass the file name as the only argument for the args field, then set shell=True. This will have Windows use whatever program is associated with that file type.
One caveat, if the path to your file has spaces, you need to surround it with two ".</p>
<p>eg.</p>
<pre><code>path = "C:\\Documents and Settings\\Bob\\Desktop\\New Folder\\README.txt"
subprocess.call('""' + path + '""', shell = True)
</code></pre>
http://stackoverflow.com/questions/698707/python-tkinter-label-wont-change-at-beginning-of-function/699057#6990571Answer by Tofystedeth for Python tkinter label won't change at beginning of functionTofystedeth2009-03-30T21:14:34Z2009-03-30T21:14:34Z<p>How are you creating your Label?
I have this little test setup:</p>
<pre><code>from Tkinter import *
class LabelTest:
def __init__(self, master):
self.test = StringVar()
self.button = Button(master, text="Change Label", command=self.change)
self.button.grid(row=0, column=0, sticky=W)
self.test.set("spam")
self.testlabel = Label(master, textvariable = self.test).grid(row = 0,column = 1)
def change(self):
self.test.set("eggs")
root = Tk()
root.title("Label tester")
calc = LabelTest(root)
root.mainloop()
</code></pre>
<p>And it works.
Did you make sure to use "textvariable = StatusBarText" instead of "text=StatusBarText.get()"?</p>
http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python/291431#2914310Answer by Tofystedeth for Print in terminal with colors using python ?Tofystedeth2008-11-14T21:07:53Z2008-11-14T21:07:53Z<p>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.</p>
http://stackoverflow.com/questions/2933/an-executable-python-app/265570#2655703Answer by Tofystedeth for An executable Python appTofystedeth2008-11-05T15:53:19Z2008-11-05T15:53:19Z<p>There's also <a href="http://pygtk.org/" rel="nofollow">PyGTK</a>, which is basically a Python wrapper for the Gnome Toolkit. I've found it easier to wrap my mind around than Tkinter, coming from pretty much no knowledge of GUI programming previously. It works pretty well and has some good tutorials. Unfortunately there isn't an installer for Python 2.6 for Windows yet, and may not be for a while.</p>
http://stackoverflow.com/questions/240031/windowserror-priveledged-instruction-when-saving-a-freeimagepy-image-in-script/244526#2445260Answer by Tofystedeth for WindowsError: priveledged instruction when saving a FreeImagePy Image in script, works in IDLETofystedeth2008-10-28T19:29:43Z2008-10-28T19:29:43Z<p>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 time. Creating a new multipage image seems to work fine) but i guess running it within IDLE, IDLE figures it out and takes care of it or something. I managed to work around it by using os.mkdir to explicitly make sure things that I need exist.</p>
http://stackoverflow.com/questions/240031/windowserror-priveledged-instruction-when-saving-a-freeimagepy-image-in-script1WindowsError: priveledged instruction when saving a FreeImagePy Image in script, works in IDLETofystedeth2008-10-27T14:18:54Z2008-10-28T19:29:43Z
<p>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 get this error message (or something similar depending on which way I try to save):</p>
<pre><code>Error returned. TIFF FreeImage_Save: failed to open file C:/OCRtmp/ocr page0
Traceback (most recent call last):
File "C:\Python25\Projects\OCRPageUnzipper\PageUnzipper.py", line 102, in <mod
ule> OCRBox.convertToPages("C:/OCRtmp/ocr page",FIPY.FIF_TIFF)
File "C:\Python25\lib\site-packages\FreeImagePy\FreeImagePy\FreeImagePy.py", l
ine 2080, in convertToPages self.Save(FIF, dib, fileNameOut, flags)
File "C:\Python25\lib\site-packages\FreeImagePy\FreeImagePy\FreeImagePy.py", l
ine 187, in Save return self.__lib.Save(typ, bitmap, fileName, flags)
WindowsError: exception: priviledged instruction
</code></pre>
<p>When I try and do the same things from IDLE, it works fine.</p>
http://stackoverflow.com/questions/1874592/pep8-80-characters-big-strings/1874628#1874628Comment by Tofystedeth on PEP8 - 80 Characters - Big StringsTofystedeth2009-12-09T16:04:07Z2009-12-09T16:04:07ZI know for my own self, I tend to stick to the 80 character limit just because I still do most of my coding in IDLE and I don't like the way it handles horizontal scrolling. (No scroll bar)http://stackoverflow.com/questions/1865727/how-to-design-an-application-in-a-modular-way/1866220#1866220Comment by Tofystedeth on How to design an application in a modular way?Tofystedeth2009-12-08T14:22:19Z2009-12-08T14:22:19ZIs it just me or do you have an error in the TDD picture? Shouldn't you go to the rewriting the test if the test fails and write production code if the test passes? Not the other way around as you have there?http://stackoverflow.com/questions/1834446/python-check-windows-server-version/1834543#1834543Comment by Tofystedeth on Python check windows server versionTofystedeth2009-12-02T19:52:24Z2009-12-02T19:52:24ZYou can also use wmic os get OperatingSystemSKU. As long as you are using Windows Vista or newer (and it appears you are) that property should exist. A list of values for SKU appears here.
<a href="http://msdn.microsoft.com/en-us/library/aa394239%28VS.85%29.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/1510609/how-to-make-this-python-program-compile/1510616#1510616Comment by Tofystedeth on How to make this Python program compile?Tofystedeth2009-10-02T18:42:39Z2009-10-02T18:42:39ZDon't forget Class and def statements.http://stackoverflow.com/questions/771816/what-does-the-shell-argument-in-subprocess-mean-on-windows/772687#772687Comment by Tofystedeth on What does the 'shell' argument in subprocess mean on Windows?Tofystedeth2009-04-21T17:20:56Z2009-04-21T17:20:56ZWow. I didn't know that even existed. I dug around for hours on Google and this was the best I could find.