[issue21952] fnmatch.py can appear in tracemalloc diffs

2021-12-06 Thread STINNER Victor
STINNER Victor added the comment: Exposing internal caches in tracemalloc is not a bug but a deliberate choice. It's easy to write your own filters to ignore selected files (or even specific functions if you can locate them by line nubmers). -- resolution: -> rejected stage: -> res

[issue21952] fnmatch.py can appear in tracemalloc diffs

2015-07-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: In 3.5+ lru_cache() is implemented in C. Is this issue still actual? -- nosy: +serhiy.storchaka ___ Python tracker ___ ___

[issue21952] fnmatch.py can appear in tracemalloc diffs

2014-07-10 Thread STINNER Victor
STINNER Victor added the comment: > When using some filters and comparing snapshots, fnmatch will appear in the > statistic diffs, e.g.: During the design of the tracemalloc module (PEP 454), it was decided to not filter traces in the C module, but filter traces on a snapshot object. The reas

[issue21952] fnmatch.py can appear in tracemalloc diffs

2014-07-10 Thread Antoine Pitrou
New submission from Antoine Pitrou: When using some filters and comparing snapshots, fnmatch will appear in the statistic diffs, e.g.: /home/antoine/34/lib/python3.4/fnmatch.py:70: size=824 B (+64 B), count=2 (+1), average=412 B eeleak.py:37: size=2512 B (+0 B), count=3 (+0), average=837 B /ho