public static PythonObject tuple(PythonObject pythonObject) {
        PythonObject tupleF = attr("tupleF");
        PythonObject ret = tupleF.call(pythonObject);
        if (ret.isNone()) {
            throw new PythonException("Cannot build tuple from object: " + pythonObject.toString());