jrmccluskey commented on code in PR #34870:
URL: https://github.com/apache/beam/pull/34870#discussion_r2087413050


##########
sdks/python/apache_beam/typehints/opcodes.py:
##########
@@ -490,6 +490,13 @@ def load_fast(state, arg):
   state.stack.append(state.vars[arg])
 
 
+def load_fast_load_fast(state, arg):
+  arg1 = arg >> 4
+  arg2 = arg & 15

Review Comment:
   I'll file an issue and take that on as a follow-up, the documentation around 
this piece of the type checking infra needs to be updated. 



##########
sdks/python/apache_beam/typehints/opcodes.py:
##########
@@ -490,6 +490,13 @@ def load_fast(state, arg):
   state.stack.append(state.vars[arg])
 
 
+def load_fast_load_fast(state, arg):
+  arg1 = arg >> 4
+  arg2 = arg & 15

Review Comment:
   Filed as #34930 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to