]>
git.madduck.net Git - etc/vim.git/blobdiff - src/black/mode.py
madduck's git repository
Every one of the projects in this repository is available at the canonical
URL git://git.madduck.net/madduck/pub/<projectpath> — see
each project's metadata for the exact URL.
All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@ git. madduck. net .
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
SSH access, as well as push access can be individually
arranged .
If you use my repositories frequently, consider adding the following
snippet to ~/.gitconfig and using the third clone URL listed for each
project:
[url "git://git.madduck.net/madduck/"]
insteadOf = madduck:
from dataclasses import dataclass, field
from enum import Enum
from dataclasses import dataclass, field
from enum import Enum
+from operator import attrgetter
from typing import Dict, Set
from black.const import DEFAULT_LINE_LENGTH
from typing import Dict, Set
from black.const import DEFAULT_LINE_LENGTH
PY37 = 7
PY38 = 8
PY39 = 9
PY37 = 7
PY38 = 8
PY39 = 9
def is_python2(self) -> bool:
return self is TargetVersion.PY27
def is_python2(self) -> bool:
return self is TargetVersion.PY27
ASSIGNMENT_EXPRESSIONS = 8
POS_ONLY_ARGUMENTS = 9
RELAXED_DECORATORS = 10
ASSIGNMENT_EXPRESSIONS = 8
POS_ONLY_ARGUMENTS = 9
RELAXED_DECORATORS = 10
FORCE_OPTIONAL_PARENTHESES = 50
# temporary for Python 2 deprecation
FORCE_OPTIONAL_PARENTHESES = 50
# temporary for Python 2 deprecation
Feature.RELAXED_DECORATORS,
Feature.POS_ONLY_ARGUMENTS,
},
Feature.RELAXED_DECORATORS,
Feature.POS_ONLY_ARGUMENTS,
},
+ TargetVersion.PY310: {
+ Feature.PATTERN_MATCHING,
+ },
if self.target_versions:
version_str = ",".join(
str(version.value)
if self.target_versions:
version_str = ",".join(
str(version.value)
- for version in sorted(self.target_versions, key=lambda v: v.value )
+ for version in sorted(self.target_versions, key=attrgetter("value") )
)
else:
version_str = "-"
)
else:
version_str = "-"