Plain is headed towards 1.0! Subscribe for development updates →
1class Img: 2 def __init__(self, src, *, alt="", width=None, height=None): 3 self.src = src 4 self.alt = alt 5 self.width = width 6 self.height = height