__init__.py 666 B

1234567891011121314
  1. # Required for Python to search this directory for module files
  2. # Keep this file free of any code or import statements that could
  3. # cause either an error to occur or a log message to be logged.
  4. # This ensures that calling code can import initialization code from
  5. # webkitpy before any errors or log messages due to code in this file.
  6. # Initialization code can include things like version-checking code and
  7. # logging configuration code.
  8. #
  9. # We do not execute any version-checking code or logging configuration
  10. # code in this file so that callers can opt-in as they want. This also
  11. # allows different callers to choose different initialization code,
  12. # as necessary.