aesthetic cleanup and create F_STRINGS_AVAILABLE bool

preserve-order
Andrew Port 2022-02-03 18:22:45 -08:00
parent f12746228f
commit dae3185ba9
1 changed files with 8 additions and 6 deletions

View File

@ -13,6 +13,9 @@ from sys import version_info
from .parser import parse_path
# f-strings are available in Python 3.6+
F_STRINGS_AVAILABLE = version_info < (3, 6)
COORD_PAIR_TMPLT = re.compile(
r'([\+-]?\d*[\.\d]\d*[eE][\+-]?\d+|[\+-]?\d*[\.\d]\d*)' +
r'(?:\s*,\s*|\s+|(?=-))' +
@ -24,7 +27,6 @@ def path2pathd(path):
return path['d']
def ellipse2pathd(ellipse):
"""converts the parameters from an ellipse or a circle to a string for a
Path object d-attribute"""
@ -69,7 +71,7 @@ def polyline2pathd(polyline, is_polygon=False):
if is_polygon and closed:
points.append(points[0])
d = 'M' + 'L'.join('{0} {1}'.format(x,y) for x,y in points)
d = 'M' + 'L'.join('{0} {1}'.format(x, y) for x, y in points)
if is_polygon or closed:
d += 'z'
return d
@ -125,12 +127,12 @@ def rect2pathd(rect):
return d
if version_info < (3, 6):
def line2pathd(node_dict):
return "M{} {}L{} {}".format(node_dict['x1'], node_dict['y1'], node_dict['x2'], node_dict['y2'])
else:
if F_STRINGS_AVAILABLE:
def line2pathd(node_dict):
return f"M{node_dict['x1']} {node_dict['y1']}L{node_dict['x2']} {node_dict['y2']}"
else:
def line2pathd(node_dict):
return "M{} {}L{} {}".format(node_dict['x1'], node_dict['y1'], node_dict['x2'], node_dict['y2'])
parser_dict = {