-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
114 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
from IPython.core.magic import Magics | ||
|
||
|
||
class LineProfilerMagics(Magics): | ||
|
||
def lprun(self, parameter_s: str = ...): | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
from typing import List | ||
from typing import Tuple | ||
import io | ||
from ._line_profiler import LineProfiler as CLineProfiler | ||
from _typeshed import Incomplete | ||
|
||
|
||
def load_ipython_extension(ip) -> None: | ||
... | ||
|
||
|
||
def is_coroutine(f): | ||
... | ||
|
||
|
||
CO_GENERATOR: int | ||
|
||
|
||
def is_generator(f): | ||
... | ||
|
||
|
||
def is_classmethod(f): | ||
... | ||
|
||
|
||
class LineProfiler(CLineProfiler): | ||
|
||
def __call__(self, func): | ||
... | ||
|
||
def wrap_classmethod(self, func): | ||
... | ||
|
||
def wrap_coroutine(self, func): | ||
... | ||
|
||
def wrap_generator(self, func): | ||
... | ||
|
||
def wrap_function(self, func): | ||
... | ||
|
||
def dump_stats(self, filename) -> None: | ||
... | ||
|
||
def print_stats(self, | ||
stream: Incomplete | None = ..., | ||
output_unit: Incomplete | None = ..., | ||
stripzeros: bool = ..., | ||
summarize: bool = ..., | ||
sort: bool = ...) -> None: | ||
... | ||
|
||
def run(self, cmd): | ||
... | ||
|
||
def runctx(self, cmd, globals, locals): | ||
... | ||
|
||
def runcall(self, func, *args, **kw): | ||
... | ||
|
||
def add_module(self, mod): | ||
... | ||
|
||
|
||
def is_ipython_kernel_cell(filename): | ||
... | ||
|
||
|
||
def show_func(filename: str, | ||
start_lineno: int, | ||
func_name: str, | ||
timings: List[Tuple[int, int, float]], | ||
unit: float, | ||
output_unit: float | None = None, | ||
stream: io.TextIOBase | None = None, | ||
stripzeros: bool = False) -> None: | ||
... | ||
|
||
|
||
def show_text(stats, | ||
unit, | ||
output_unit: Incomplete | None = ..., | ||
stream: Incomplete | None = ..., | ||
stripzeros: bool = ..., | ||
summarize: bool = ..., | ||
sort: bool = ...): | ||
... | ||
|
||
|
||
def load_stats(filename): | ||
... | ||
|
||
|
||
def main(): | ||
... |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters