Edgewall Software

Changes between Version 22 and Version 23 of TracDev/DevelopmentWithEclipseAndPyDev


Ignore:
Timestamp:
Sep 11, 2014, 2:42:29 PM (10 years ago)
Author:
Franz Mayer <franz.mayer@…>
Comment:

added paragraph "Ignoring warnings"

Legend:

Unmodified
Added
Removed
Modified
  • TracDev/DevelopmentWithEclipseAndPyDev

    v22 v23  
    5757}}}
    5858
     59== Ignoring warnings
     60
     61As described in [http://stackoverflow.com/a/14591913/995610 stackoverflow] you can use a "deactivation comment" at the end of the line, if you want to suppress a warning.
     62
     63Examples:
     64{{{#!py
     65from pkg_resources import resource_filename  # @UnresolvedImport
     66fpath, fname = os.path.split(name)  # @UnusedVariable
     67}}}
     68
     69
    5970== Format Code
    6071