wx - Add-ons for the wxPython framework

wxPython related utilities.

interpreter - an alternate Interpreter class for use in wxPython based applications

Interactive program driver - wxPython version.

An alternative implementation of command.interpreter.Interpreter for use with wxPython applications, as the default one is not compatible with wxPython’s application loop.

class Interpreter(cmd)[source]

A command interpreter suitable for use in wxPython based applications.

__init__(cmd)[source]

Creates an interpreter instance. popen is a Popen-like object which must support non-blocking I/O.

class Popen(cmd)[source]

A simple wxPython based, Popen-like object.

__init__(cmd)[source]

x.__init__(…) initializes x; see help(type(x)) for signature

recv()[source]
recv_err()[source]
send(data)[source]

test - Support for testing wxPython programs

Support for testing wx based modules.

test - Support for testing wxPython programs that use the command package

class InterpreterTester(cmd)[source]

Test oriented Interpreter implementation.

Useful for testing wxPython based command interpreters isolated from the visual infrastructure.

__init__(cmd)[source]

Creates an interpreter instance. popen is a Popen-like object which must support non-blocking I/O.