diff --git a/hy/__init__.py b/hy/__init__.py index 2c04568..00f5754 100644 --- a/hy/__init__.py +++ b/hy/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012 Paul Tagliamonte +# Copyright (c) 2013 Paul Tagliamonte # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), diff --git a/hy/compiler.py b/hy/compiler.py index 616d7b8..19b1d59 100644 --- a/hy/compiler.py +++ b/hy/compiler.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012 Paul Tagliamonte +# Copyright (c) 2013 Paul Tagliamonte # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), diff --git a/hy/core/__init__.py b/hy/core/__init__.py index 7edca07..ac5262a 100644 --- a/hy/core/__init__.py +++ b/hy/core/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012 Paul Tagliamonte +# Copyright (c) 2013 Paul Tagliamonte # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), diff --git a/hy/core/bootstrap.py b/hy/core/bootstrap.py index e453de1..dc38de0 100644 --- a/hy/core/bootstrap.py +++ b/hy/core/bootstrap.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012 Paul Tagliamonte +# Copyright (c) 2013 Paul Tagliamonte # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), diff --git a/hy/errors.py b/hy/errors.py index a362197..323d67e 100644 --- a/hy/errors.py +++ b/hy/errors.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012 Paul Tagliamonte +# Copyright (c) 2013 Paul Tagliamonte # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), diff --git a/hy/importer.py b/hy/importer.py index d59f180..26158d4 100644 --- a/hy/importer.py +++ b/hy/importer.py @@ -1,4 +1,22 @@ +# Copyright (c) 2013 Paul Tagliamonte # +# Permission is hereby granted, free of charge, to any person obtaining a +# copy of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. from hy.compiler import hy_compile from hy.lex import tokenize diff --git a/hy/lex/__init__.py b/hy/lex/__init__.py index ed2564e..8cf257a 100644 --- a/hy/lex/__init__.py +++ b/hy/lex/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012 Paul Tagliamonte +# Copyright (c) 2013 Paul Tagliamonte # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), diff --git a/hy/lex/machine.py b/hy/lex/machine.py index fbf96e3..f7e92d0 100644 --- a/hy/lex/machine.py +++ b/hy/lex/machine.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012 Paul Tagliamonte +# Copyright (c) 2013 Paul Tagliamonte # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), diff --git a/hy/lex/states.py b/hy/lex/states.py index 98b9bda..cdf785f 100644 --- a/hy/lex/states.py +++ b/hy/lex/states.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012 Paul Tagliamonte +# Copyright (c) 2013 Paul Tagliamonte # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), diff --git a/hy/macros.py b/hy/macros.py index 7f5a8e5..3eda0c7 100644 --- a/hy/macros.py +++ b/hy/macros.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012 Paul Tagliamonte +# Copyright (c) 2013 Paul Tagliamonte # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), diff --git a/hy/models/__init__.py b/hy/models/__init__.py index f10e883..408c917 100644 --- a/hy/models/__init__.py +++ b/hy/models/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012 Paul Tagliamonte +# Copyright (c) 2013 Paul Tagliamonte # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), diff --git a/hy/models/dict.py b/hy/models/dict.py index ea0af14..43384bd 100644 --- a/hy/models/dict.py +++ b/hy/models/dict.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012 Paul Tagliamonte +# Copyright (c) 2013 Paul Tagliamonte # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), diff --git a/hy/models/expression.py b/hy/models/expression.py index 6639314..183571a 100644 --- a/hy/models/expression.py +++ b/hy/models/expression.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012 Paul Tagliamonte +# Copyright (c) 2013 Paul Tagliamonte # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), diff --git a/hy/models/integer.py b/hy/models/integer.py index 38c29a3..cb46af4 100644 --- a/hy/models/integer.py +++ b/hy/models/integer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012 Paul Tagliamonte +# Copyright (c) 2013 Paul Tagliamonte # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), diff --git a/hy/models/list.py b/hy/models/list.py index ae86c72..b82642b 100644 --- a/hy/models/list.py +++ b/hy/models/list.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012 Paul Tagliamonte +# Copyright (c) 2013 Paul Tagliamonte # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), diff --git a/hy/models/string.py b/hy/models/string.py index d2a542a..ec64504 100644 --- a/hy/models/string.py +++ b/hy/models/string.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012 Paul Tagliamonte +# Copyright (c) 2013 Paul Tagliamonte # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), diff --git a/hy/models/symbol.py b/hy/models/symbol.py index 86cd4cb..7a1685c 100644 --- a/hy/models/symbol.py +++ b/hy/models/symbol.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012 Paul Tagliamonte +# Copyright (c) 2013 Paul Tagliamonte # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), diff --git a/tests/compilers/test_ast.py b/tests/compilers/test_ast.py index 9f8dc53..1fee013 100644 --- a/tests/compilers/test_ast.py +++ b/tests/compilers/test_ast.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012 Paul Tagliamonte +# Copyright (c) 2013 Paul Tagliamonte # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), diff --git a/tests/lex/test_lex.py b/tests/lex/test_lex.py index e7cca84..ad087b6 100644 --- a/tests/lex/test_lex.py +++ b/tests/lex/test_lex.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012 Paul Tagliamonte +# Copyright (c) 2013 Paul Tagliamonte # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"),