summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/event
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-10-26 16:32:17 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-10-26 16:32:58 -0400
commit42f2a16be7ff462048857799decc41a95c459fc3 (patch)
tree13c6ffaabf041753e15b1fb9d1a2790449d43ee6 /lib/sqlalchemy/event
parentaa3d591693a36790b54374282594a50a07fac3cd (diff)
downloadsqlalchemy-42f2a16be7ff462048857799decc41a95c459fc3.tar.gz
- add copyright to source files missing it
Diffstat (limited to 'lib/sqlalchemy/event')
-rw-r--r--lib/sqlalchemy/event/__init__.py2
-rw-r--r--lib/sqlalchemy/event/api.py6
-rw-r--r--lib/sqlalchemy/event/attr.py6
-rw-r--r--lib/sqlalchemy/event/base.py6
-rw-r--r--lib/sqlalchemy/event/legacy.py6
-rw-r--r--lib/sqlalchemy/event/registry.py6
6 files changed, 31 insertions, 1 deletions
diff --git a/lib/sqlalchemy/event/__init__.py b/lib/sqlalchemy/event/__init__.py
index 0a0131e23..41d81c46e 100644
--- a/lib/sqlalchemy/event/__init__.py
+++ b/lib/sqlalchemy/event/__init__.py
@@ -1,4 +1,4 @@
-# sqlalchemy/event.py
+# event/__init__.py
# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
#
# This module is part of SQLAlchemy and is released under
diff --git a/lib/sqlalchemy/event/api.py b/lib/sqlalchemy/event/api.py
index 33a6b817f..5d10bb50b 100644
--- a/lib/sqlalchemy/event/api.py
+++ b/lib/sqlalchemy/event/api.py
@@ -1,3 +1,9 @@
+# event/api.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
"""Public API functions for the event system.
"""
diff --git a/lib/sqlalchemy/event/attr.py b/lib/sqlalchemy/event/attr.py
index 629ea5800..690ebce08 100644
--- a/lib/sqlalchemy/event/attr.py
+++ b/lib/sqlalchemy/event/attr.py
@@ -1,3 +1,9 @@
+# event/attr.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
"""Attribute implementation for _Dispatch classes.
The various listener targets for a particular event class are represented
diff --git a/lib/sqlalchemy/event/base.py b/lib/sqlalchemy/event/base.py
index 1d7bb9cd1..788b24bfa 100644
--- a/lib/sqlalchemy/event/base.py
+++ b/lib/sqlalchemy/event/base.py
@@ -1,3 +1,9 @@
+# event/base.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
"""Base implementation classes.
The public-facing ``Events`` serves as the base class for an event interface;
diff --git a/lib/sqlalchemy/event/legacy.py b/lib/sqlalchemy/event/legacy.py
index 7bf0f2ca0..9278e62fb 100644
--- a/lib/sqlalchemy/event/legacy.py
+++ b/lib/sqlalchemy/event/legacy.py
@@ -1,3 +1,9 @@
+# event/legacy.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
"""Routines to handle adaption of legacy call signatures,
generation of deprecation notes and docstrings.
diff --git a/lib/sqlalchemy/event/registry.py b/lib/sqlalchemy/event/registry.py
index 868dc28ed..a3e35e55a 100644
--- a/lib/sqlalchemy/event/registry.py
+++ b/lib/sqlalchemy/event/registry.py
@@ -1,3 +1,9 @@
+# event/registry.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
"""Provides managed registration services on behalf of :func:`.listen`
arguments.