summaryrefslogtreecommitdiffstats
path: root/Tools/Scripts/webkitpy/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/Scripts/webkitpy/__init__.py')
-rw-r--r--Tools/Scripts/webkitpy/__init__.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/Tools/Scripts/webkitpy/__init__.py b/Tools/Scripts/webkitpy/__init__.py
new file mode 100644
index 0000000..b376bf2
--- /dev/null
+++ b/Tools/Scripts/webkitpy/__init__.py
@@ -0,0 +1,13 @@
+# Required for Python to search this directory for module files
+
+# Keep this file free of any code or import statements that could
+# cause either an error to occur or a log message to be logged.
+# This ensures that calling code can import initialization code from
+# webkitpy before any errors or log messages due to code in this file.
+# Initialization code can include things like version-checking code and
+# logging configuration code.
+#
+# We do not execute any version-checking code or logging configuration
+# code in this file so that callers can opt-in as they want. This also
+# allows different callers to choose different initialization code,
+# as necessary.