This file contains hidden or 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
| from __future__ import annotations | |
| import importlib | |
| from typing import TYPE_CHECKING | |
| import typer | |
| from typer.core import TyperGroup | |
| if TYPE_CHECKING: | |
| from click import Context |
This file contains hidden or 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
| import os | |
| import os.path as op | |
| from pathlib import Path | |
| import shutil | |
| import subprocess | |
| import tempfile | |
| from IPython.lib.latextools import genelatex |
This file contains hidden or 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
| # -*- coding: utf8 -*- | |
| """ | |
| A simple monkeypath for the pstats module to be able to see sub-millisecond timings | |
| If display value is 0.000, display the time in microseconds | |
| """ | |
| import pstats | |
| def f8(x): |