Skip to content

Commit 33b4cc3

Browse files
Resolved #1504: Added ability to push star imports to the top to avoid overriding explicitly defined imports.
1 parent 359c105 commit 33b4cc3

File tree

5 files changed

+41
-0
lines changed

5 files changed

+41
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Find out more about isort's release policy [here](https://pycqa.github.io/isort/
1616
- Implemented #1684: Added support for extending skips with `--extend-skip` and `--extend-skip-glob`.
1717
- Implemented #1688: Auto identification and skipping of some invalid import statements.
1818
- Implemented #1645: Ability to reverse the import sorting order.
19+
- Implemented #1504: Ability to push star imports to the top to avoid overriding explicitly defined imports.
1920
- Documented #1685: Skip doesn't support plain directory names, but skip_glob does.
2021

2122
### 5.7.0 December 30th 2020

isort/main.py

+6
Original file line numberDiff line numberDiff line change
@@ -666,6 +666,12 @@ def _build_arg_parser() -> argparse.ArgumentParser:
666666
dest="ext_format",
667667
help="Tells isort to format the given files according to an extensions formatting rules.",
668668
)
669+
output_group.add_argument(
670+
"--star-first",
671+
help="Forces star imports above others to avoid overriding directly imported variables.",
672+
dest="star_first",
673+
action="store_true",
674+
)
669675

670676
section_group.add_argument(
671677
"--sd",

isort/output.py

+10
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,16 @@ def sorted_imports(
6565
reverse=config.reverse_sort,
6666
)
6767

68+
if config.star_first:
69+
star_modules = []
70+
other_modules = []
71+
for module in from_modules:
72+
if "*" in parsed.imports[section]["from"][module]:
73+
star_modules.append(module)
74+
else:
75+
other_modules.append(module)
76+
from_modules = star_modules + other_modules
77+
6878
straight_imports = _with_straight_imports(
6979
parsed, config, straight_modules, section, remove_imports, import_type
7080
)

isort/settings.py

+1
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,7 @@ class _Config:
211211
sort_relative_in_force_sorted_sections: bool = False
212212
overwrite_in_place: bool = False
213213
reverse_sort: bool = False
214+
star_first: bool = False
214215

215216
def __post_init__(self):
216217
py_version = self.py_version

tests/unit/test_ticketed_features.py

+23
Original file line numberDiff line numberDiff line change
@@ -1059,3 +1059,26 @@ def test_isort_allows_reversing_sort_order_issue_1645():
10591059
)
10601060
"""
10611061
)
1062+
1063+
1064+
def test_isort_can_push_star_imports_above_others_issue_1504():
1065+
"""isort should provide a way to push star imports above other imports to avoid explicit
1066+
imports from being overwritten.
1067+
see: https://github.com/PyCQA/isort/issues/1504
1068+
"""
1069+
assert (
1070+
(
1071+
isort.code(
1072+
"""
1073+
from ._bar import Any, All, Not
1074+
from ._foo import a, *
1075+
""",
1076+
star_first=True,
1077+
)
1078+
)
1079+
== """
1080+
from ._foo import *
1081+
from ._foo import a
1082+
from ._bar import All, Any, Not
1083+
"""
1084+
)

0 commit comments

Comments
 (0)