Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
rewrite stacklevel removed in main
  • Loading branch information
MarcoGorelli committed Oct 14, 2022
commit e0d5f4e874acd2a78e74238b8300f73d7b2642e2
3 changes: 1 addition & 2 deletions pandas/_libs/lib.pyx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from collections import abc
from decimal import Decimal
from enum import Enum
import inspect
from typing import Literal
import warnings

Expand Down Expand Up @@ -355,7 +354,7 @@ def fast_unique_multiple(list arrays, sort: bool = True):
"The values in the array are unorderable. "
"Pass `sort=False` to suppress this warning.",
RuntimeWarning,
stacklevel=find_stack_level(inspect.currentframe()),
stacklevel=find_stack_level(),
)
pass

Expand Down