Kent Johnson wrote:
> Jan Gregor wrote:
>
>> my typical scenario is that my swing application is running, and i see
>> some error or chance for improvement - modify sources of app, stop and
>> run
>> application again.
>> so task is to reload class defitions (from source files) and modify also
>>
[Jan Gregor]
> Following try showed me that instances aren't affected by
> modification in class definition.
Is this more like what you mean?
c:\>jython
Jython 2.1 on java1.4.2_09 (JIT: null)
Type "copyright", "credits" or "license" for more information.
>>> class a:
... def test(self):
...
Jan Gregor wrote:
> my typical scenario is that my swing application is running, and i see
> some error or chance for improvement - modify sources of app, stop and run
> application again.
> so task is to reload class defitions (from source files) and modify also
> existing instances (their methods
In article <[EMAIL PROTECTED]>, Kent Johnson wrote:
> Jan Gregor wrote:
>> Hello folks
>>
>> I want to apply changes in my source code without stopping jython
>> and JVM. Preferable are modifications directly to instances of
>> classes. My application is a desktop app using swing library.
>
>
Jan Gregor wrote:
> Hello folks
>
> I want to apply changes in my source code without stopping jython
> and JVM. Preferable are modifications directly to instances of
> classes. My application is a desktop app using swing library.
Can you be more specific? Python and Jython allow classes to be
In article <[EMAIL PROTECTED]>, Alan Kennedy wrote:
> [Jan Gregor]
>> I want to apply changes in my source code without stopping jython
>> and JVM. Preferable are modifications directly to instances of
>> classes. My application is a desktop app using swing library.
>>
>> Python solutions als
[Jan Gregor]
> I want to apply changes in my source code without stopping jython
> and JVM. Preferable are modifications directly to instances of
> classes. My application is a desktop app using swing library.
>
> Python solutions also interest me.
>
> Solution similiar to "lisp way" is ide
Hello folks
I want to apply changes in my source code without stopping jython
and JVM. Preferable are modifications directly to instances of
classes. My application is a desktop app using swing library.
Python solutions also interest me.
Solution similiar to "lisp way" is ideal.
Thanks f