Changes between Version 15 and Version 16 of Submitting/Python


Ignore:
Timestamp:
Jul 19, 2015, 10:21:02 AM (9 years ago)
Author:
wenzeslaus
Comment:

improve wording for positive and negative examples

Legend:

Unmodified
Added
Removed
Modified
  • Submitting/Python

    v15 v16  
    9393{{{
    9494#!python
     95# use this:
    9596angle = angle * pi / 180
    9697# not this:
     
    102103{{{
    103104#!python
     105# use this:
    104106grass.run_command('g.region', raster='myrast')
    105107# not this:
     
    111113{{{
    112114#!python
     115# use this:
    113116grass.run_command('g.region', raster='myrast')
    114117# not this:
     
    120123{{{
    121124#!python
     125# use this:
    122126a = [1, 2, 3]
    123127# not this:
     
    129133{{{
    130134#!python
     135# use this:
    131136dlg = wx.FileDialog(parent=self, message=_("Choose file to save current workspace"),
    132137                    wildcard=_("GRASS Workspace File (*.gxw)|*.gxw"), style=wx.FD_SAVE)