refactor pycode: sort methods

This commit is contained in:
Takeshi KOMIYA 2020-05-27 01:38:25 +09:00
parent 2a036bd34d
commit 49b91b076d

View File

@ -155,6 +155,12 @@ class _UnparseVisitor(ast.NodeVisitor):
["%s=%s" % (k.arg, self.visit(k.value)) for k in node.keywords]) ["%s=%s" % (k.arg, self.visit(k.value)) for k in node.keywords])
return "%s(%s)" % (self.visit(node.func), ", ".join(args)) return "%s(%s)" % (self.visit(node.func), ", ".join(args))
def visit_Constant(self, node: ast.Constant) -> str: # type: ignore
if node.value is Ellipsis:
return "..."
else:
return repr(node.value)
def visit_Dict(self, node: ast.Dict) -> str: def visit_Dict(self, node: ast.Dict) -> str:
keys = (self.visit(k) for k in node.keys) keys = (self.visit(k) for k in node.keys)
values = (self.visit(v) for v in node.values) values = (self.visit(v) for v in node.values)
@ -188,13 +194,6 @@ class _UnparseVisitor(ast.NodeVisitor):
else: else:
return "()" return "()"
if sys.version_info >= (3, 6):
def visit_Constant(self, node: ast.Constant) -> str: # type: ignore
if node.value is Ellipsis:
return "..."
else:
return repr(node.value)
if sys.version_info < (3, 8): if sys.version_info < (3, 8):
# these ast nodes were deprecated in python 3.8 # these ast nodes were deprecated in python 3.8
def visit_Bytes(self, node: ast.Bytes) -> str: def visit_Bytes(self, node: ast.Bytes) -> str: