Skip to content

Commit fef9e50

Browse files
committed
Refactor dmypy code
1 parent 5eebc67 commit fef9e50

File tree

6 files changed

+290
-291
lines changed

6 files changed

+290
-291
lines changed

mypy/dmypy/client.py

Lines changed: 286 additions & 287 deletions
Large diffs are not rendered by default.
File renamed without changes.

mypy/dmypy_server.py renamed to mypy/dmypy/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import mypy.build
2525
import mypy.errors
2626
import mypy.main
27-
from mypy.dmypy_util import WriteToConn, receive, send
27+
from mypy.dmypy.util import WriteToConn, receive, send
2828
from mypy.find_sources import InvalidSourceList, create_source_list
2929
from mypy.fscache import FileSystemCache
3030
from mypy.fswatcher import FileData, FileSystemWatcher
File renamed without changes.

mypy/test/testdaemon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import tempfile
1414
import unittest
1515

16-
from mypy.dmypy_server import filter_out_missing_top_level_packages
16+
from mypy.dmypy.server import filter_out_missing_top_level_packages
1717
from mypy.fscache import FileSystemCache
1818
from mypy.modulefinder import SearchPaths
1919
from mypy.test.config import PREFIX, test_temp_dir

mypy/test/testfinegrained.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424

2525
from mypy import build
2626
from mypy.config_parser import parse_config_file
27-
from mypy.dmypy_server import Server
28-
from mypy.dmypy_util import DEFAULT_STATUS_FILE
27+
from mypy.dmypy.server import Server
28+
from mypy.dmypy.util import DEFAULT_STATUS_FILE
2929
from mypy.errors import CompileError
3030
from mypy.find_sources import create_source_list
3131
from mypy.modulefinder import BuildSource

0 commit comments

Comments
 (0)