}
// Open a file in the remote interpreter.
private static PushyObject open(Client client, String path, String mode) {
Module builtin = client.getModule("__builtin__");
PushyObject open = (PushyObject)builtin.__getattr__("open");
return (PushyObject)open.__call__(new String[]{path, mode});
}