comparison mercurial/utils/memorytop.py @ 51860:1c5810ce737e

typing: add `from __future__ import annotations` to remaining source files Most of these look newer than when the original imports referenced in the previous commit were dropped, so these weren't covered by the backout. These were found with: hg files mercurial hgext hgext3rd -I '**.py' -X '**/thirdparty' \ | xargs grep -L 'from __future__ import annotations' All of the `__init__.py` files that finds are empty, so those were ignored and the rest manually edited.
author Matt Harbison <matt_harbison@yahoo.com>
date Thu, 12 Sep 2024 16:27:58 -0400
parents 5b6c0af021da
children
comparison
equal deleted inserted replaced
51859:f4733654f144 51860:1c5810ce737e
2 # 2 #
3 # Usage: set PYTHONTRACEMALLOC=n in the environment of the hg invocation, 3 # Usage: set PYTHONTRACEMALLOC=n in the environment of the hg invocation,
4 # where n>= is the number of frames to show in the backtrace. Put calls to 4 # where n>= is the number of frames to show in the backtrace. Put calls to
5 # memorytop in strategic places to show the current memory use by allocation 5 # memorytop in strategic places to show the current memory use by allocation
6 # site. 6 # site.
7
8 from __future__ import annotations
7 9
8 import gc 10 import gc
9 import tracemalloc 11 import tracemalloc
10 12
11 13