From 8e718d48918a9e471b205303a0103359f741af1c Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Thu, 15 Sep 2022 11:24:30 +0100 Subject: [PATCH] `pstats`: delete outdated comment (#8738) The annotation in CPython was fixed thanks to @ruancomelli in https://github.com/python/cpython/pull/96741! --- stdlib/pstats.pyi | 1 - 1 file changed, 1 deletion(-) diff --git a/stdlib/pstats.pyi b/stdlib/pstats.pyi index 3876fff5e..10d817b59 100644 --- a/stdlib/pstats.pyi +++ b/stdlib/pstats.pyi @@ -30,7 +30,6 @@ if sys.version_info >= (3, 9): @dataclass(unsafe_hash=True) class FunctionProfile: - # Note: the annotation in the CPython codebase is "int", but the annotation in CPython is wrong! See #8712 ncalls: str tottime: float percall_tottime: float