2017-01-27 | Paul Boddie | file changeset files shortlog | Configure the Makefile using generated secondary Makefiles, replacing the debug-specific Makefile and permitting the selection of included source files. |
paul@375 | 1 | import locale |
paul@375 | 2 | |
paul@375 | 3 | print locale.getlocale() |
paul@375 | 4 | print locale.initlocale() |
paul@375 | 5 | print locale.getlocale() |
paul@375 | 6 | print locale.setlocale(locale.LC_CTYPE, "en_GB.UTF-8") |
paul@375 | 7 | print locale.getlocale() |