blob: 024e2f184257d29a6a605d5af77a367562992712 [file] [log] [blame]
package com.jetbrains.python.debugger;
/**
* @author traff
*/
public class PyIo {
private final String text;
private final int ctx;
public PyIo(String text, int ctx) {
this.text = text;
this.ctx = ctx;
}
public String getText() {
return text;
}
public int getCtx() {
return ctx;
}
}