Skip to content

Commit 072402b

Browse files
authoredOct 14, 2022
Backport PR #49053 on branch 1.5.x (REVERT caching in find_stack_level) (#49079)
1 parent f9eebaf commit 072402b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+331
-480
lines changed
 

‎doc/source/development/contributing_codebase.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Otherwise, you need to do it manually:
134134
warnings.warn(
135135
'Use new_func instead.',
136136
FutureWarning,
137-
stacklevel=find_stack_level(inspect.currentframe()),
137+
stacklevel=find_stack_level(),
138138
)
139139
new_func()
140140

‎pandas/_config/config.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
ContextDecorator,
5555
contextmanager,
5656
)
57-
import inspect
5857
import re
5958
from typing import (
6059
Any,
@@ -662,7 +661,7 @@ def _warn_if_deprecated(key: str) -> bool:
662661
warnings.warn(
663662
d.msg,
664663
FutureWarning,
665-
stacklevel=find_stack_level(inspect.currentframe()),
664+
stacklevel=find_stack_level(),
666665
)
667666
else:
668667
msg = f"'{key}' is deprecated"
@@ -673,9 +672,7 @@ def _warn_if_deprecated(key: str) -> bool:
673672
else:
674673
msg += ", please refrain from using it."
675674

676-
warnings.warn(
677-
msg, FutureWarning, stacklevel=find_stack_level(inspect.currentframe())
678-
)
675+
warnings.warn(msg, FutureWarning, stacklevel=find_stack_level())
679676
return True
680677
return False
681678

0 commit comments

Comments
 (0)
Please sign in to comment.