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).
19 lines
300 B
Python
19 lines
300 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import trampoline_module
|
|
|
|
|
|
def func():
|
|
class Test(trampoline_module.test_override_cache_helper):
|
|
def func(self):
|
|
return 42
|
|
|
|
return Test()
|
|
|
|
|
|
def func2():
|
|
class Test(trampoline_module.test_override_cache_helper):
|
|
pass
|
|
|
|
return Test()
|