We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9bb737 commit aa19c7aCopy full SHA for aa19c7a
1 file changed
mypy/__main__.py
@@ -6,9 +6,22 @@
6
import sys
7
import traceback
8
9
+if 1: # Required!
10
+ import inspect
11
+ print('')
12
+ print(__file__)
13
+ print('Start __main__.py')
14
15
+ path = r'c:\Repos\ekr-fork-mypy'
16
+ if path not in sys.path:
17
+ sys.path.insert(0, path)
18
+
19
from mypy.main import main, process_options
20
from mypy.util import FancyFormatter
21
22
+if 1:
23
+ for z in (main, process_options, FancyFormatter):
24
+ assert 'ekr-fork-mypy' in inspect.getfile(z), repr(z)
25
26
def console_entry() -> None:
27
try:
0 commit comments