Changes between Version 5 and Version 6 of Submitting/wxGUI
- Timestamp:
- 01/23/16 08:22:33 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Submitting/wxGUI
v5 v6 47 47 48 48 == Documentation and comments == 49 50 == Documentation and comments ==51 49 Some information about docstrings: 52 50 … … 92 90 (needed for wxPython >= 2.9). 93 91 92 For translatable strings use underscore: 93 94 {{{ 95 #!python 96 _("User visible text") 97 }}} 98 99 The underscore function must be explicitly imported: 100 101 {{{ 102 #!python 103 from core.utils import _ 104 }}} 105 94 106 == Testing == 95 107