Exemple #1
0
    def runClientEval(self):
        """
        Runs the client-side eval() and returns the resulting values
        after they've been unwrapped.
        """
        # Query the eval function
        response = self.client.get(self.standardUrl)
        d = self.parse(response)

        # Unwrap the results.
        return bls.unwrapY(d["y"]), bls.unwrapP(d["p"])