summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Moss <drkjam@gmail.com>2016-09-09 01:02:33 +0100
committerDavid Moss <drkjam@gmail.com>2016-09-09 01:02:33 +0100
commit94a35e4e2420e7c1cd7879104a03ff03a786036b (patch)
tree862a82bd2932e09bf949943b3ccbcfd7bb9407c1
parenta8509c0c7c4c259c4a5dafb1b44e9e8d121ba697 (diff)
downloadnetaddr-94a35e4e2420e7c1cd7879104a03ff03a786036b.tar.gz
- updated all copyright notices
-rw-r--r--COPYRIGHT2
-rw-r--r--LICENSE2
-rw-r--r--Makefile2
-rw-r--r--docs/source/conf.py2
-rw-r--r--netaddr/__init__.py2
-rw-r--r--netaddr/compat.py2
-rw-r--r--netaddr/core.py2
-rw-r--r--netaddr/eui/__init__.py2
-rwxr-xr-xnetaddr/eui/ieee.py2
-rw-r--r--netaddr/fbsocket.py2
-rw-r--r--netaddr/ip/__init__.py2
-rw-r--r--netaddr/ip/glob.py2
-rwxr-xr-xnetaddr/ip/iana.py2
-rw-r--r--netaddr/ip/nmap.py2
-rw-r--r--netaddr/ip/rfc1924.py2
-rw-r--r--netaddr/ip/sets.py2
-rw-r--r--netaddr/strategy/__init__.py2
-rw-r--r--netaddr/strategy/eui48.py2
-rw-r--r--netaddr/strategy/eui64.py2
-rw-r--r--netaddr/strategy/ipv4.py2
-rw-r--r--netaddr/strategy/ipv6.py2
-rwxr-xr-xnetaddr/tools/netaddr2
-rw-r--r--setup.py2
-rwxr-xr-xtutorials/run_doctests.py2
24 files changed, 24 insertions, 24 deletions
diff --git a/COPYRIGHT b/COPYRIGHT
index f6edc11..7f74a04 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -4,7 +4,7 @@ Here are the copyright notices applicable to the netaddr library.
netaddr
-------
-Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
Released under the BSD license. See the LICENSE file for details.
diff --git a/LICENSE b/LICENSE
index 8522e99..7a37b9a 100644
--- a/LICENSE
+++ b/LICENSE
@@ -6,7 +6,7 @@ netaddr
COPYRIGHT AND LICENSE
-Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
diff --git a/Makefile b/Makefile
index a0942c2..b8dfaaa 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/docs/source/conf.py b/docs/source/conf.py
index 1c6d72f..0564249 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -41,7 +41,7 @@ master_doc = 'index'
# General information about the project.
project = u'netaddr'
-copyright = u'2008-2015, David P. D. Moss. All rights reserved'
+copyright = u'2008-2016, David P. D. Moss. All rights reserved'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
diff --git a/netaddr/__init__.py b/netaddr/__init__.py
index b2615d8..522ce17 100644
--- a/netaddr/__init__.py
+++ b/netaddr/__init__.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/compat.py b/netaddr/compat.py
index 7e39ed7..10ead63 100644
--- a/netaddr/compat.py
+++ b/netaddr/compat.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/core.py b/netaddr/core.py
index 895506a..2cd4cf5 100644
--- a/netaddr/core.py
+++ b/netaddr/core.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/eui/__init__.py b/netaddr/eui/__init__.py
index 11a050b..96ad14a 100644
--- a/netaddr/eui/__init__.py
+++ b/netaddr/eui/__init__.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/eui/ieee.py b/netaddr/eui/ieee.py
index 2b62c7e..8ce7084 100755
--- a/netaddr/eui/ieee.py
+++ b/netaddr/eui/ieee.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/fbsocket.py b/netaddr/fbsocket.py
index dd23a8c..c935366 100644
--- a/netaddr/fbsocket.py
+++ b/netaddr/fbsocket.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/ip/__init__.py b/netaddr/ip/__init__.py
index 0141b26..52b90fa 100644
--- a/netaddr/ip/__init__.py
+++ b/netaddr/ip/__init__.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/ip/glob.py b/netaddr/ip/glob.py
index 0f7c495..2c6147f 100644
--- a/netaddr/ip/glob.py
+++ b/netaddr/ip/glob.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/ip/iana.py b/netaddr/ip/iana.py
index 6338ec2..b7dc6ae 100755
--- a/netaddr/ip/iana.py
+++ b/netaddr/ip/iana.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/ip/nmap.py b/netaddr/ip/nmap.py
index 25fa279..b20182c 100644
--- a/netaddr/ip/nmap.py
+++ b/netaddr/ip/nmap.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/ip/rfc1924.py b/netaddr/ip/rfc1924.py
index 290f845..36f937b 100644
--- a/netaddr/ip/rfc1924.py
+++ b/netaddr/ip/rfc1924.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/ip/sets.py b/netaddr/ip/sets.py
index 7ec9d9c..a2ab2b5 100644
--- a/netaddr/ip/sets.py
+++ b/netaddr/ip/sets.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/strategy/__init__.py b/netaddr/strategy/__init__.py
index 6ab370f..caba19e 100644
--- a/netaddr/strategy/__init__.py
+++ b/netaddr/strategy/__init__.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/strategy/eui48.py b/netaddr/strategy/eui48.py
index 68c8232..2ff068d 100644
--- a/netaddr/strategy/eui48.py
+++ b/netaddr/strategy/eui48.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/strategy/eui64.py b/netaddr/strategy/eui64.py
index 01c98ea..9d4c513 100644
--- a/netaddr/strategy/eui64.py
+++ b/netaddr/strategy/eui64.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/strategy/ipv4.py b/netaddr/strategy/ipv4.py
index d6aa8c2..b7f4d3d 100644
--- a/netaddr/strategy/ipv4.py
+++ b/netaddr/strategy/ipv4.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/strategy/ipv6.py b/netaddr/strategy/ipv6.py
index ba03c95..26fb42a 100644
--- a/netaddr/strategy/ipv6.py
+++ b/netaddr/strategy/ipv6.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/tools/netaddr b/netaddr/tools/netaddr
index bad8557..4e21489 100755
--- a/netaddr/tools/netaddr
+++ b/netaddr/tools/netaddr
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/setup.py b/setup.py
index 057db03..863528f 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
"""
diff --git a/tutorials/run_doctests.py b/tutorials/run_doctests.py
index 21e7fd4..e04d85f 100755
--- a/tutorials/run_doctests.py
+++ b/tutorials/run_doctests.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------