python variable dump

Is there a way in (wx)python to dump all variables in
a certain context without having to enumerate them one
by one?
That would be great for error reporting purposes...

In addition to what the others have said, check out wx.py.filling for
a nice graphical namespace browser.

···

On 9/28/05, f rom <etaoinbe@yahoo.com> wrote:

__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com

---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwidgets.org
For additional commands, e-mail: wxPython-users-help@lists.wxwidgets.org

Chris Mellon a écrit :

···

On 9/28/05, f rom <etaoinbe@yahoo.com> wrote:

Is there a way in (wx)python to dump all variables in
a certain context without having to enumerate them one
by one?
That would be great for error reporting purposes...
   

In addition to what the others have said, check out wx.py.filling for
a nice graphical namespace browser.

Is there an example of use somewhere (wx.py.filling)?

--

Hugues JEAN-BAPTISTE (hjb@agorinfo.fr)
AGORINFO S.A. (http://www.agorinfo.fr)

Chris Mellon a écrit :

>
>
>>Is there a way in (wx)python to dump all variables in
>>a certain context without having to enumerate them one
>>by one?
>>That would be great for error reporting purposes...
>>
>>
>In addition to what the others have said, check out wx.py.filling for
>a nice graphical namespace browser.
>
>
Is there an example of use somewhere (wx.py.filling)?

All the Py* apps are samples of the various Py classes. There's an
example of using PyShell in the demo, and PyFilling works much the
same way. And of course theres always the source.

Py is wonderful because it just works. Heres an example of adding a
namespace browser to your app:

    import wx.py
    g = wx.py.filling.FillingFrame(None)
    g.Show()

You can get an interactive shell, just like PyAlaMode, by creating a
wx.py.filling.crust.CrustFrame instead

···

On 9/29/05, Hugues JEAN-BAPTISTE <hjb@agorinfo.fr> wrote:

>On 9/28/05, f rom <etaoinbe@yahoo.com> wrote:

--

Hugues JEAN-BAPTISTE (hjb@agorinfo.fr)
AGORINFO S.A. (http://www.agorinfo.fr)

---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwidgets.org
For additional commands, e-mail: wxPython-users-help@lists.wxwidgets.org

…or on Linux try to run pyshell like

<your_python_install>/bin/pyshell

If that fails, try to run PyShell.py like

python <your_python_install>/lib/pythonX.Y/site-packages/wx/py/PyShell.py

/Jean Brouwers

···

On 9/29/05, Chris Mellon arkanes@gmail.com wrote:

On 9/29/05, Hugues JEAN-BAPTISTE hjb@agorinfo.fr wrote:

Chris Mellon a écrit :

On 9/28/05, f rom <etaoinbe@yahoo.com > > wrote:

Is there a way in (wx)python to dump all variables in
a certain context without having to enumerate them one
by one?
That would be great for error reporting purposes…

In addition to what the others have said, check out wx.py.filling for
a nice graphical namespace browser.

Is there an example of use somewhere (
wx.py.filling)?

All the Py* apps are samples of the various Py classes. There’s an
example of using PyShell in the demo, and PyFilling works much the
same way. And of course theres always the source.

Py is wonderful because it just works. Heres an example of adding a
namespace browser to your app:

import wx.py
g = wx.py.filling.FillingFrame(None)
g.Show()

You can get an interactive shell, just like PyAlaMode, by creating a

wx.py.filling.crust.CrustFrame instead

Hugues JEAN-BAPTISTE (hjb@agorinfo.fr)
AGORINFO S.A. (http://www.agorinfo.fr
)


To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwidgets.org

For additional commands, e-mail: wxPython-users-help@lists.wxwidgets.org


To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwidgets.org
For additional commands, e-mail:
wxPython-users-help@lists.wxwidgets.org

Mistake in my previous post. That should be PyFilling.py instead of PyShell.py.

My apologies, /Jean Brouwers

···

On 9/29/05, Jean Brouwers mrjean1@gmail.com wrote:

…or on Linux try to run pyshell like

<your_python_install>/bin/pyshell

If that fails, try to run PyShell.py like

python <your_python_install>/lib/pythonX.Y/site-packages/wx/py/PyShell.py

/Jean Brouwers

On 9/29/05, Chris Mellon <arkanes@gmail.com > > wrote:

On 9/29/05, Hugues JEAN-BAPTISTE hjb@agorinfo.fr wrote:

Chris Mellon a écrit :

On 9/28/05, f rom < > > etaoinbe@yahoo.com > > > wrote:

Is there a way in (wx)python to dump all variables in
a certain context without having to enumerate them one
by one?
That would be great for error reporting purposes…

In addition to what the others have said, check out wx.py.filling for
a nice graphical namespace browser.

Is there an example of use somewhere (
wx.py.filling)?

All the Py* apps are samples of the various Py classes. There’s an
example of using PyShell in the demo, and PyFilling works much the
same way. And of course theres always the source.

Py is wonderful because it just works. Heres an example of adding a
namespace browser to your app:

import wx.py
g = wx.py.filling.FillingFrame(None)
g.Show()

You can get an interactive shell, just like PyAlaMode, by creating a

wx.py.filling.crust.CrustFrame instead

Hugues JEAN-BAPTISTE (hjb@agorinfo.fr
)
AGORINFO S.A. (http://www.agorinfo.fr
)


To unsubscribe, e-mail:
wxPython-users-unsubscribe@lists.wxwidgets.org

For additional commands, e-mail: wxPython-users-help@lists.wxwidgets.org


To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwidgets.org
For additional commands, e-mail:
wxPython-users-help@lists.wxwidgets.org