tvalentyn commented on code in PR #35656: URL: https://github.com/apache/beam/pull/35656#discussion_r2257119281
########## sdks/python/apache_beam/internal/code_object_pickler.py: ########## @@ -15,7 +15,391 @@ # limitations under the License. # +import collections +import hashlib +import inspect +import re +import sys +import types + def get_normalized_path(path): """Returns a normalized path. This function is intended to be overridden.""" return path + + +def _get_code_path(callable): Review Comment: I am referring to the `def _get_code_path(callable):` method which you are adding in this change. -- 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: github-unsubscr...@beam.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org