Skip to content

Commit 43cfa47

Browse files
Merge pull request #1694 from PyCQA/issue/1566
Issue/1566
2 parents 5a0ebba + 404d809 commit 43cfa47

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Find out more about isort's release policy [here](https://pycqa.github.io/isort/
88
- Fixed #1631: as import comments can in some cases be duplicated.
99
- Fixed #1667: extra newline added with float-to-top, after skip, in some cases.
1010
- Fixed #1594: incorrect placement of noqa comments with multiple from imports.
11+
- Fixed #1566: in some cases different length limits for dos based line endings.
1112
- Implemented #1648: Export MyPY type hints.
1213
- Implemented #1641: Identified import statements now return runnable code.
1314
- Implemented #1661: Added "wemake" profile.

isort/output.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,13 @@ def _with_from_imports(
504504
config=config,
505505
multi_line_output=wrap.Modes.VERTICAL_GRID, # type: ignore
506506
)
507-
if max(len(x) for x in import_statement.split("\n")) > config.line_length:
507+
if (
508+
max(
509+
len(import_line)
510+
for import_line in import_statement.split(parsed.line_separator)
511+
)
512+
> config.line_length
513+
):
508514
import_statement = other_import_statement
509515
if not do_multiline_reformat and len(import_statement) > config.line_length:
510516
import_statement = wrap.line(import_statement, parsed.line_separator, config)

tests/unit/test_regressions.py

+12
Original file line numberDiff line numberDiff line change
@@ -1607,3 +1607,15 @@ def test_isort_shouldnt_move_noqa_comment_issue_1594():
16071607
)
16081608
"""
16091609
)
1610+
1611+
1612+
def test_isort_correctly_handles_unix_vs_linux_newlines_issue_1566():
1613+
import_statement = (
1614+
"from impacket.smb3structs import (\n"
1615+
"SMB2_CREATE, SMB2_FLAGS_DFS_OPERATIONS, SMB2_IL_IMPERSONATION, "
1616+
"SMB2_OPLOCK_LEVEL_NONE, SMB2Create,"
1617+
"\nSMB2Create_Response, SMB2Packet)\n"
1618+
)
1619+
assert isort.code(import_statement, line_length=120) == isort.code(
1620+
import_statement.replace("\n", "\r\n"), line_length=120
1621+
).replace("\r\n", "\n")

0 commit comments

Comments
 (0)