1
vote
2answers
524 views
How to import a Python class that is in a directory above?
For example, I want to inherit from a class in a file that lies in a directory above the current one.
Is it possible to relatively import that file?
thanks!
…
1
vote
1answer
124 views
How to reload a Python module that was imported in another file?
I am trying to learn how Python reloads modules, but have hit a roadblock.
Let's say I have:
dir1\file1.py:
from dir2.file2 import ClassOne
myObject = ClassOne( …
3
votes
5answers
223 views
In Python, how do you change an instantiated object after a reload?
Let's say you have an object that was instantiated from a class inside a module.
Now, you reload that module.
The next thing you'd like to do is make that reload affect that class.
…
0
votes
1answer
57 views
How do you enable auto-scrolling on GtkSourceView2?
I am having a problem with GtkSourceView used from Python.
Two major problems:
1) When a user types text into the GtkSourceView, and types past the bottom of the visible text, the GtkSource …
1
vote
2answers
53 views
Are there any examples of a Python PyGTK Pango editor toolbar?
I am looking for an example application written in Python and PyGTK.
There should be an editor out there somewhere that already does this.
Some app with a text editor row of buttons …
0
votes
How do you enable auto-scrolling on GtkSourceView2?
Ok I just figured this out.
I was adding the GtkSourceView2 into a GtkScrolledWindow.
Only, it was adding a ViewPort first via ScrolledWindow.add_with_viewport().
This disables part of the …
0
votes
Are there any examples of a Python PyGTK Pango editor toolbar?
I found some related examples: KeepNote, which has a custom rich edit, and Rednotebook which implements KeepNote's richedit.
…
