summaryrefslogtreecommitdiff
path: root/scripts/__init__.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2016-01-16 16:18:04 -0800
committerAlon Zakai <alonzakai@gmail.com>2016-01-16 16:18:04 -0800
commit307fa22e522d5ca82829a117bffa0060cddc72e2 (patch)
treec1ff64eacaea1777627697c332a123922a86a834 /scripts/__init__.py
parent8e3dde6a4d2c861edc25df5f7d3d0e8b1eaac1e9 (diff)
parent1fa790550e38043ba388e5e927821c1beabdfa2b (diff)
downloadbinaryen-307fa22e522d5ca82829a117bffa0060cddc72e2.tar.gz
binaryen-307fa22e522d5ca82829a117bffa0060cddc72e2.tar.bz2
binaryen-307fa22e522d5ca82829a117bffa0060cddc72e2.zip
Merge pull request #117 from WebAssembly/factor-out-support
Factor out some support code
Diffstat (limited to 'scripts/__init__.py')
-rwxr-xr-xscripts/__init__.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/__init__.py b/scripts/__init__.py
new file mode 100755
index 000000000..8db5bb0bf
--- /dev/null
+++ b/scripts/__init__.py
@@ -0,0 +1,17 @@
+#! /usr/bin/env python
+
+# Copyright 2015 WebAssembly Community Group participants
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# Empty __init__.py file: Python treats the directory as containing a package.