Código:
TypeError: 'int' object is not callable
Más bien me suena a que hay un parámetro mal pasado.
Lo de "not callable" me suena a que probablemente no sea
Código python:
Ver originalself.myTextCtrl.Alignment(wx.TEXT_ALIGNMENT_RIGHT)
sino
Código python:
Ver originalself.myTextCtrl.Alignment = wx.TEXT_ALIGNMENT_RIGHT
Con probar no se pierde nada
Saludos.