File: profmod_extractor.pyi

package info (click to toggle)
python-line-profiler 5.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,256 kB
  • sloc: python: 8,119; sh: 810; ansic: 297; makefile: 14
file content (13 lines) | stat: -rw-r--r-- 258 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
import _ast
from typing import List
from typing import Dict


class ProfmodExtractor:

    def __init__(self, tree: _ast.Module, script_file: str,
                 prof_mod: List[str]) -> None:
        ...

    def run(self) -> (Dict[int, str]):
        ...