Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If this is ticked, the user site-packages directory is not added to the sys.path. This is implied if python is run in isolated mode. [-s]

Division Control Semantics

Control the semantics of division. [-Q]

  • old - division of int/int and long/long return an int or long (default)
  • new - new division semantics, i.e. division of int/int and long/long returns a float
  • warn - old division semantics with a warning for int/int and long/long
  • warnall - old division semantics with a warning for all uses of the division operator

Note that this option is only available in Python version 2.x.

Validation of Hash-Based .pyc Files

...

Whether to issue a warning or error when comparing bytes or bytearray with str or bytes with int. [-b | -bb]

Indentation Issues

Select whether to issue a warning or error when a source file mixes tabs and spaces for indentation in a way that makes it depend on the worth of a tab expressed in spaces. [-t | -tt]

Note that this option is only available in Python version 2.x

Warning Control

This option controls how often warnings are output to stderr. Leave blank to default to one warning for each source line where it occurs. [-W]

Individual warnings filters are specified as a sequence of fields separated by colons: 'action:message:category:module:line'.

Warn about Python 3.x possible incompatibilities

If this is ticked, a 'DeprecationWarning' is emitted for features that are removed or significantly changed in Python 3 and can’t be detected using static code analysis. [-3]

Note that this option is only available in Python version 2.6 and 2.7.

Timeout (in seconds) 

How many seconds to wait for the action to finish before timing out. The default is 86400 seconds (24 hours).

...