Tagged Questions
1
vote
2answers
25 views
Python tkinter disable the button until all the fields are filled
Let's say I have 2 entry widgets, 1 option menu(drop down list) and 1 button in tkinter. How can i set the button widget state to DISABLED until all 3 widgets are filled by the user?This is what i ...
0
votes
1answer
62 views
Change tkinter button state
I need to change a button state from DISABLED to NORMAL...I mean i need to activate the button when some event occurs. here is the current state of my button...currently disabled.
...
0
votes
0answers
228 views
Python state machine
I have been working through MIT open course ware and have been learning about state machines. I have the machine working and it outputs properly except for with this one specific test. Any help is ...
1
vote
1answer
88 views
Is there any support for a Python program to be able to write a human-readable configuration file from which it can restore its state later?
Update:
Based on the responses as of 3/16/2013 (or lack thereof), I get the impression that nothing anything like what I have in mind exists already. Thus I will build such a mechanism for myself ...
2
votes
1answer
59 views
State Based vs Passing Arguments
I'm using Python as an example.
class ThingArguments:
def render(self, text, color):
return magiclibrary.generateText(text, color)
class ThingStates:
def __init__(self):
...
1
vote
1answer
71 views
call method when entering state using Qt state machine and pyside
I am trying to call a method in python when entering states using Qt's state machine framework. I am able to set up the state machine and edit GUI properties, but not call methods I have written. Is ...
0
votes
0answers
63 views
python shell: pickle entire state
When using either "ipython" or "code.interact(local=locals())", I'd like to have a way to save the entire program address space into a pickle file, and similarly a way to load such a file and then ...
4
votes
5answers
247 views
How to maintain state in Python without classes?
Are there pythonic ways to maintain state (for purposes of optimisation, for example) without going fully object-oriented?
To illustrate my question better, here's an example of a pattern I use ...
0
votes
2answers
67 views
State object in django
My problem is as follows:
I am implementing a labeling system for a machine learning problem.
So in short: A complex object should get a simple label information (like a tag).
There should be just ...
0
votes
0answers
40 views
Python chat server when can't guarantee page not reset?
I'm relatively new to Python, cgi, and passenger-wsgi, so please bear with me.
I set up a python script that's not much more than
import time
startTime = time.time()
def main():
return ...
2
votes
1answer
75 views
Need to communicate update events to multiple running instances of the same python script
I need to communicate update events to all running instances of my python script, and i would like to keep the code as simple as possible. I have zero experience with communicating between running ...
0
votes
2answers
148 views
Any tips for a more pythonic way to implement state machine behavior?
For brevity, I'm just showing what can/must occur in states. I haven't run into any oddities in the state machine framework itself.
Here is a specific question:
Do you find it confusing that we ...
1
vote
4answers
92 views
A class that only allows me to fill instances of the first type created
This is what it does: The content of the first instance of the class ( in this case mok1 ) gets filled with water. I can fill it infinitely but as soon as the first instance is created, I can only ...
0
votes
1answer
346 views
python multiprocessing status of worker
I have a Python-interface class to a big C++ library, which does some work for me (with big amounts of data). I can gracefully stop the worker by sending it a signal, i.e. os.kill( pid,signal.SIGINT ...
5
votes
3answers
254 views
How to correctly achieve test isolation with a stateful Python module?
The project I'm working on is a business logic software wrapped up as a Python package. The idea is that various script or application will import it, initialize it, then use it.
It currently has a ...
4
votes
2answers
677 views
Saving the state of a program to allow it to be resumed
I occasionally have Python programs that take a long time to run, and that I want to be able to save the state of and resume later. Does anyone have a clever way of saving the state either every x ...
0
votes
5answers
324 views
Atomic state storage in Python?
I'm working on a project on an unreliable system which I'm assuming can fail at any point. What I want to guarantee is that if I write_state and the machine fails mid-operation, a read_state will ...
0
votes
1answer
513 views
How to handle button states efficiently in Tkinter
I've done a few searches but I couldn't find anything about this topic. Perhaps because it is common programmer knowledge (I'm not a programmer, I've learned from necessity), or because I'm going ...
0
votes
2answers
730 views
Ignoring case, punctuation, and whitespace in Strings
What is the most efficient way of ignoring case, punctuation, and whitespace in strings? These strings should be divided into words instead of characters should ignore the aforementioned details on ...
0
votes
2answers
144 views
Wildcard for PyGTK States
How do I combine:
button.modify_bg(gtk.STATE_NORMAL, gtk.gdk.color_parse("Green"))
button.modify_bg(gtk.STATE_ACTIVE, gtk.gdk.color_parse("Green"))
button.modify_bg(gtk.STATE_SELECTED, ...