Skip to content

Commit 6f23472

Browse files
[3.10] Fix type annotation of pstats.FunctionProfile.ncalls (GH-96741) (#96836)
This change aligns the type annotation of `pstats.FunctionProfile.ncalls` with its runtime type. (cherry picked from commit 8e9a37d) Co-authored-by: Ruan Comelli <ruancomelli@gmail.com>
1 parent 9f1c9b1 commit 6f23472

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Lib/pstats.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def __new__(cls, *values):
5656

5757
@dataclass(unsafe_hash=True)
5858
class FunctionProfile:
59-
ncalls: int
59+
ncalls: str
6060
tottime: float
6161
percall_tottime: float
6262
cumtime: float
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Corrected type annotation for dataclass attribute ``pstats.FunctionProfile.ncalls`` to be ``str``.

0 commit comments

Comments
 (0)