We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5ddaae commit 0a76f8eCopy full SHA for 0a76f8e
1 file changed
pixie/vm/stdlib.py
@@ -817,6 +817,7 @@ def _doc(self):
817
class PartialFunction(code.NativeFn):
818
_immutable_fields_ = ["_partial_f", "_partial_args"]
819
def __init__(self, f, args):
820
+ code.NativeFn.__init__(self)
821
self._partial_f = f
822
self._partial_args = args
823
@@ -835,6 +836,7 @@ def invoke(self, args):
835
836
837
return self._partial_f.invoke(new_args)
838
839
+
840
@as_var("partial")
841
@jit.unroll_safe
842
def _partial__args(args):
0 commit comments