summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Smith <FatalEnigma@users.noreply.github.com>2017-08-24 08:03:13 +0100
committerOmer Katz <omer.drow@gmail.com>2017-08-24 10:03:13 +0300
commitf4a54faca8174fb1e99e00792af25914d5d4bc41 (patch)
treeb9f647dea070761394c7734aaff8ca210a605861
parent2a5fc2dd92a92d39658ba66f21e5b7e9e5fdd3e3 (diff)
downloadpy-amqp-f4a54faca8174fb1e99e00792af25914d5d4bc41.tar.gz
Remove LGPL headers from source files as project has since changed to BSD (#163)
-rw-r--r--amqp/__init__.py14
-rw-r--r--amqp/abstract_channel.py14
-rw-r--r--amqp/basic_message.py14
-rw-r--r--amqp/channel.py14
-rw-r--r--amqp/connection.py14
-rw-r--r--amqp/exceptions.py14
-rw-r--r--amqp/method_framing.py14
-rw-r--r--amqp/serialization.py14
-rw-r--r--amqp/transport.py14
9 files changed, 0 insertions, 126 deletions
diff --git a/amqp/__init__.py b/amqp/__init__.py
index 70bc07c..538f863 100644
--- a/amqp/__init__.py
+++ b/amqp/__init__.py
@@ -1,19 +1,5 @@
"""Low-level AMQP client for Python (fork of amqplib)."""
# Copyright (C) 2007-2008 Barry Pederson <bp@barryp.org>
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
from __future__ import absolute_import, unicode_literals
import re
diff --git a/amqp/abstract_channel.py b/amqp/abstract_channel.py
index 67032d8..aaad554 100644
--- a/amqp/abstract_channel.py
+++ b/amqp/abstract_channel.py
@@ -1,19 +1,5 @@
"""Code common to Connection and Channel objects."""
# Copyright (C) 2007-2008 Barry Pederson <bp@barryp.org>)
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
from __future__ import absolute_import, unicode_literals
from vine import ensure_promise, promise
diff --git a/amqp/basic_message.py b/amqp/basic_message.py
index 7f80df2..92089f7 100644
--- a/amqp/basic_message.py
+++ b/amqp/basic_message.py
@@ -1,19 +1,5 @@
"""AMQP Messages."""
# Copyright (C) 2007-2008 Barry Pederson <bp@barryp.org>
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
from __future__ import absolute_import, unicode_literals
# Intended to fix #85: ImportError: cannot import name spec
diff --git a/amqp/channel.py b/amqp/channel.py
index f939e45..b16c6a8 100644
--- a/amqp/channel.py
+++ b/amqp/channel.py
@@ -1,19 +1,5 @@
"""AMQP Channels."""
# Copyright (C) 2007-2008 Barry Pederson <bp@barryp.org>
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
from __future__ import absolute_import, unicode_literals
import logging
diff --git a/amqp/connection.py b/amqp/connection.py
index 2ed89fb..4bd86b7 100644
--- a/amqp/connection.py
+++ b/amqp/connection.py
@@ -1,19 +1,5 @@
"""AMQP Connections."""
# Copyright (C) 2007-2008 Barry Pederson <bp@barryp.org>
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
from __future__ import absolute_import, unicode_literals
import logging
diff --git a/amqp/exceptions.py b/amqp/exceptions.py
index 94a7bba..f6e0403 100644
--- a/amqp/exceptions.py
+++ b/amqp/exceptions.py
@@ -1,19 +1,5 @@
"""Exceptions used by amqp."""
# Copyright (C) 2007-2008 Barry Pederson <bp@barryp.org>
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
from __future__ import absolute_import, unicode_literals
from .five import python_2_unicode_compatible
from .platform import pack, unpack
diff --git a/amqp/method_framing.py b/amqp/method_framing.py
index 680449a..28c1f4c 100644
--- a/amqp/method_framing.py
+++ b/amqp/method_framing.py
@@ -1,19 +1,5 @@
"""Convert between frames and higher-level AMQP methods."""
# Copyright (C) 2007-2008 Barry Pederson <bp@barryp.org>
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
from __future__ import absolute_import, unicode_literals
from collections import defaultdict
diff --git a/amqp/serialization.py b/amqp/serialization.py
index 5ce3fb0..6b92d1a 100644
--- a/amqp/serialization.py
+++ b/amqp/serialization.py
@@ -4,20 +4,6 @@
"""
# Copyright (C) 2007 Barry Pederson <bp@barryp.org>
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
from __future__ import absolute_import, unicode_literals
import calendar
diff --git a/amqp/transport.py b/amqp/transport.py
index 981c8b6..b1af3ae 100644
--- a/amqp/transport.py
+++ b/amqp/transport.py
@@ -1,19 +1,5 @@
"""Transport implementation."""
# Copyright (C) 2009 Barry Pederson <bp@barryp.org>
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
from __future__ import absolute_import, unicode_literals
import errno