Changes between Version 15 and Version 16 of Submitting/Python
- Timestamp:
- 07/19/15 10:21:02 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Submitting/Python
v15 v16 93 93 {{{ 94 94 #!python 95 # use this: 95 96 angle = angle * pi / 180 96 97 # not this: … … 102 103 {{{ 103 104 #!python 105 # use this: 104 106 grass.run_command('g.region', raster='myrast') 105 107 # not this: … … 111 113 {{{ 112 114 #!python 115 # use this: 113 116 grass.run_command('g.region', raster='myrast') 114 117 # not this: … … 120 123 {{{ 121 124 #!python 125 # use this: 122 126 a = [1, 2, 3] 123 127 # not this: … … 129 133 {{{ 130 134 #!python 135 # use this: 131 136 dlg = wx.FileDialog(parent=self, message=_("Choose file to save current workspace"), 132 137 wildcard=_("GRASS Workspace File (*.gxw)|*.gxw"), style=wx.FD_SAVE)