import wx
app = wx.App(False)

for face in ('Arial', 'Times New Roman', 'Symbol'):
    print face
    for size in range(4, 200):
        font = wx.Font(
            pointSize=size,
            family=wx.FONTFAMILY_MODERN,
            style=wx.FONTSTYLE_ITALIC,
            weight=wx.FONTWEIGHT_NORMAL,
            underline=True,
            faceName=face)
        if size != font.PointSize:
            print size, font.PointSize
