Files
openide/python/testData/formatter/indentCommentariesInsideFromImportStatement.py
Mikhail Golubev a74226bac9 PY-12748 Indent comments inside multiline imports
It was done so already for other elements with braces that may
span multiple lines, e.g. literals of collections and parameter/argument
lists. Now formatter behavior for PyFromImportStatement is consistent
with them.
2015-01-29 13:03:49 +03:00

18 lines
705 B
Python

from hamcrest import (
assert_that,
# Object Matchers
equal_to, has_length, has_string, has_property, instance_of, none, not_none,
same_instance,
# Number Matchers
close_to, greater_than, greater_than_or_equal_to, less_than, less_than_or_equal_to,
# Text Matchers
contains_string, ends_with, equal_to_ignoring_case, equal_to_ignoring_whitespace,
starts_with, string_contains_in_order,
# Logical Matchers
all_of, any_of, anything, is_not,
# Sequence Matchers
contains, contains_inanyorder, has_item, has_items, is_in, only_contains,
# Dictionary Matchers
has_entries, has_entry, has_key, has_value,
# Decorator Matchers
described_as, is_)