Flask WTforms Multiple Select

from wtforms import SelectMultipleField

language = SelectMultipleField('Programming Language', 
                               choices=[
                                 ('cpp', 'C++'), 
                                 ('py', 'Python'), 
                                 ('text', 'Plain Text')
                               ])
Bug Killer