mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-25 00:35:01 +00:00
2533141583
This reverts commits9d077c9ba5
andb4938f5198
. They cause a crash-on-startup on Mac ARM machines, failing to get the locale encoding (nl_langinfo(CODESET) failed).
16 lines
280 B
Python
16 lines
280 B
Python
# -*- coding: utf-8 -*-
|
|
import sys
|
|
|
|
from widget_module import Widget
|
|
|
|
|
|
class DerivedWidget(Widget):
|
|
def __init__(self, message):
|
|
super(DerivedWidget, self).__init__(message)
|
|
|
|
def the_answer(self):
|
|
return 42
|
|
|
|
def argv0(self):
|
|
return sys.argv[0]
|