65
reputation
17 views

Registered User

name
member for 5 months
seen 15 hours ago
website
location
age
1d
asked Need example/help with GtkTextBuffer (of GtkTextView) serialize/deserialize
Nov
20
revised How to find GTK version in PHP-GTK2?
added 59 characters in body
Nov
20
answered How to find GTK version in PHP-GTK2?
Nov
20
accepted Are there any examples of a Python PyGTK Pango editor toolbar?
Nov
20
answered Are there any examples of a Python PyGTK Pango editor toolbar?
Nov
20
asked How to find GTK version in PHP-GTK2?
Nov
3
revised Are there any examples of a Python PyGTK Pango editor toolbar?
added 43 characters in body
Nov
3
asked Are there any examples of a Python PyGTK Pango editor toolbar?
Aug
19
accepted How do you enable auto-scrolling on GtkSourceView2?
Aug
19
answered How do you enable auto-scrolling on GtkSourceView2?
Aug
19
comment How do you enable auto-scrolling on GtkSourceView2?
I tried calling place_cursor_onscreen() from the keypress, but GtkSourceView2 does not honor it.
Aug
19
comment How do you enable auto-scrolling on GtkSourceView2?
Ok, scratch that. How do you hook into the keypress to enable scrolling? Up, Down, PgUp, and PgDown keys need to work on this widget or it becomes frustrating.
Aug
16
awarded  Tumbleweed
Aug
9
asked How do you enable auto-scrolling on GtkSourceView2?
Jul
6
comment In Python, how do you change an instantiated object after a reload?
This is an excellent idea Alex. Thank you. I am keeping track of my objects already, that is not a problem. In fact, this is more flexible, because then the user can choose to reload all objects, just one, some, or none and have future objects use the new code. I will be giving your solution a shot this week and report back here. Thanks again!
Jul
3
comment How to reload a Python module that was imported in another file?
Follow up question: stackoverflow.com/questions/1080669/…
Jul
3
comment In Python, how do you change an instantiated object after a reload?
"Can you be a bit more clear on what you are confused about?" haha, of course not, or i wouldnt be confused! ;) I am just wondering how to be a bit more elegant because the user would always be saying "ok all i need to do is change the code in function run()", but I wouldnt expect them to add a new function, etc. But basically I could add some kind of management structure to replace the run() pointer without the user knowing.
Jul
3
awarded  Commentator
Jul
3
awarded  Supporter
Jul
3
comment How to reload a Python module that was imported in another file?
Ok I accepted. Took a moment to realize the checkmark button is what I had to click on! lol. If you are interested what I am trying to achieve with Python please take a look here, its opensource: launchpad.net/bloom
Jul
3
comment In Python, how do you change an instantiated object after a reload?
Thanks for the answer, albeit a gloomy one. I want the user to be able to rewrite code for an object, and have that code be put into affect. So for example, you have a planet object, and creatures on the planet. You want to change the planet code, so the weather on the planet changes behavior. All the creatures have pointers to that planet, and the planet data is huge, so deleting/creating it would be painful. Maybe reload isn't appropriate for this scenario...
Jul
3
comment In Python, how do you change an instantiated object after a reload?
All of these answers are great food for thought for me. I dont yet know which answer is the right one so I will do some playing with the solutions before selecting. thanks! :)
Jul
3
comment In Python, how do you change an instantiated object after a reload?
That seems like it would work, but... I would have to keep adding new functions, as the user keeps changing the code. Let say the user can write the code in behavior, it would change frequently, I am not sure how to manage that, but with Python anything is possible...
Jul
3
awarded  Editor
Jul
3
comment In Python, how do you change an instantiated object after a reload?
Thanks balpha, I've been wondering that for a while :)
Jul
3
revised In Python, how do you change an instantiated object after a reload?
added 216 characters in body
Jul
3
comment In Python, how do you change an instantiated object after a reload?
Interesting. That may actually work for what I had in mind, but is a totally different approach to what I had envisioned!
Jul
3
comment In Python, how do you change an instantiated object after a reload?
Thanks for the response, but what happens when you need more than static behavior across the class? I should have been more specific. The function will need to utilize data specific to that instantiation.
Jul
3
asked In Python, how do you change an instantiated object after a reload?
Jul
3
awarded  Scholar
Jul
3
comment How to reload a Python module that was imported in another file?
Basically what I want to do is have objects running code in edit windows, which the user can change while the system is running. The objects would have a regular "step()" function being called, where the user should change the code. This will alter the behavior of the objects as the program runs.
Jul
3
comment How to reload a Python module that was imported in another file?
Thanks Alex. I tried this and it works, insofar as it doesn't throw any errors. I still need to reload those objects somehow. I noticed you wrote that book. Cool...!
Jul
3
asked How to reload a Python module that was imported in another file?
Jun
28
awarded  Student
Jun
28
comment How to import a Python class that is in a directory above?
Thank you very much, gimel, it works. I've been wondering this for a while and it's prevented me from building my project the way I want. I've got two books on Python and neither of them mention this!
Jun
28
asked How to import a Python class that is in a directory above?