itholic commented on code in PR #45377: URL: https://github.com/apache/spark/pull/45377#discussion_r1519270151
########## python/pyspark/errors/utils.py: ########## @@ -15,12 +15,22 @@ # limitations under the License. # +import builtins import re -from typing import Dict, Match +import functools +import inspect +import threading +from typing import Any, Callable, Dict, Match, TypeVar, Type + +from IPython import get_ipython Review Comment: Thanks for pointing out! btw I'm preparing new design for error context for leveraging JVM stacktrace. Let me address this comment along with applying the new design. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
