diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-02-17 23:12:19 +0100 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-02-21 19:06:16 +0100 |
commit | d0818815b39f99388539314932ba6718f43e58bb (patch) | |
tree | c735bcd87e2b1c54b32202b461430075050595fb | |
parent | 75be17818872dea083b66c9531c087a2ce636d23 (diff) | |
download | astroid-git-d0818815b39f99388539314932ba6718f43e58bb.tar.gz |
Remove the # coding, since PEP3120 the default is UTF8
37 files changed, 1 insertions, 37 deletions
diff --git a/astroid/__pkginfo__.py b/astroid/__pkginfo__.py index 7da2de10..38432971 100644 --- a/astroid/__pkginfo__.py +++ b/astroid/__pkginfo__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2006-2014 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2014-2020 Claudiu Popa <pcmanticore@gmail.com> # Copyright (c) 2014 Google, Inc. diff --git a/astroid/as_string.py b/astroid/as_string.py index 653411f4..fd708188 100644 --- a/astroid/as_string.py +++ b/astroid/as_string.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2009-2011, 2013-2014 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2010 Daniel Harding <dharding@gmail.com> # Copyright (c) 2013-2016, 2018-2020 Claudiu Popa <pcmanticore@gmail.com> diff --git a/astroid/bases.py b/astroid/bases.py index 9c743031..49251223 100644 --- a/astroid/bases.py +++ b/astroid/bases.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2009-2011, 2013-2014 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2012 FELD Boris <lothiraldan@gmail.com> # Copyright (c) 2014-2020 Claudiu Popa <pcmanticore@gmail.com> diff --git a/astroid/brain/brain_builtin_inference.py b/astroid/brain/brain_builtin_inference.py index 8022d8bf..4aefe7eb 100644 --- a/astroid/brain/brain_builtin_inference.py +++ b/astroid/brain/brain_builtin_inference.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2014-2021 Claudiu Popa <pcmanticore@gmail.com> # Copyright (c) 2014-2015 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2015-2016 Ceridwen <ceridwenv@gmail.com> diff --git a/astroid/brain/brain_collections.py b/astroid/brain/brain_collections.py index d88928e4..53cd3b7f 100644 --- a/astroid/brain/brain_collections.py +++ b/astroid/brain/brain_collections.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2016, 2018, 2020 Claudiu Popa <pcmanticore@gmail.com> # Copyright (c) 2016-2017 Łukasz Rogalski <rogalski.91@gmail.com> # Copyright (c) 2017 Derek Gustafson <degustaf@gmail.com> diff --git a/astroid/brain/brain_gi.py b/astroid/brain/brain_gi.py index 1f582f6a..f776190d 100644 --- a/astroid/brain/brain_gi.py +++ b/astroid/brain/brain_gi.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2013-2014 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2014 Google, Inc. # Copyright (c) 2014 Cole Robinson <crobinso@redhat.com> diff --git a/astroid/brain/brain_namedtuple_enum.py b/astroid/brain/brain_namedtuple_enum.py index 03877938..042f3d16 100644 --- a/astroid/brain/brain_namedtuple_enum.py +++ b/astroid/brain/brain_namedtuple_enum.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2012-2015 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2013-2014 Google, Inc. # Copyright (c) 2014-2020 Claudiu Popa <pcmanticore@gmail.com> diff --git a/astroid/brain/brain_threading.py b/astroid/brain/brain_threading.py index f220f19c..7b52d859 100644 --- a/astroid/brain/brain_threading.py +++ b/astroid/brain/brain_threading.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2016, 2018-2020 Claudiu Popa <pcmanticore@gmail.com> # Copyright (c) 2017 Łukasz Rogalski <rogalski.91@gmail.com> # Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com> diff --git a/astroid/brain/brain_type.py b/astroid/brain/brain_type.py index 4e82813f..f09bd16d 100644 --- a/astroid/brain/brain_type.py +++ b/astroid/brain/brain_type.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- """ Astroid hooks for type support. diff --git a/astroid/brain/brain_typing.py b/astroid/brain/brain_typing.py index 9ff72274..60557952 100644 --- a/astroid/brain/brain_typing.py +++ b/astroid/brain/brain_typing.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2017-2018 Claudiu Popa <pcmanticore@gmail.com> # Copyright (c) 2017 Łukasz Rogalski <rogalski.91@gmail.com> # Copyright (c) 2017 David Euresti <github@euresti.com> diff --git a/astroid/builder.py b/astroid/builder.py index 86c7f08f..7c819cbf 100644 --- a/astroid/builder.py +++ b/astroid/builder.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2006-2011, 2013-2014 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2013 Phil Schaf <flying-sheep@web.de> # Copyright (c) 2014-2020 Claudiu Popa <pcmanticore@gmail.com> diff --git a/astroid/inference.py b/astroid/inference.py index bc3e1f97..24c051a5 100644 --- a/astroid/inference.py +++ b/astroid/inference.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2006-2011, 2013-2014 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2012 FELD Boris <lothiraldan@gmail.com> # Copyright (c) 2013-2014 Google, Inc. diff --git a/astroid/interpreter/objectmodel.py b/astroid/interpreter/objectmodel.py index 006be9f9..83711ca0 100644 --- a/astroid/interpreter/objectmodel.py +++ b/astroid/interpreter/objectmodel.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2016-2020 Claudiu Popa <pcmanticore@gmail.com> # Copyright (c) 2016 Derek Gustafson <degustaf@gmail.com> # Copyright (c) 2017-2018 Bryce Guinta <bryce.paul.guinta@gmail.com> diff --git a/astroid/modutils.py b/astroid/modutils.py index 4ec8ce95..2541e127 100644 --- a/astroid/modutils.py +++ b/astroid/modutils.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2014-2018, 2020 Claudiu Popa <pcmanticore@gmail.com> # Copyright (c) 2014 Google, Inc. # Copyright (c) 2014 Denis Laxalde <denis.laxalde@logilab.fr> diff --git a/astroid/node_classes.py b/astroid/node_classes.py index bc756cbd..e2db47a8 100644 --- a/astroid/node_classes.py +++ b/astroid/node_classes.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2009-2011, 2013-2014 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2010 Daniel Harding <dharding@gmail.com> # Copyright (c) 2012 FELD Boris <lothiraldan@gmail.com> diff --git a/astroid/protocols.py b/astroid/protocols.py index 9b9af88e..d54a9191 100644 --- a/astroid/protocols.py +++ b/astroid/protocols.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2009-2011, 2013-2014 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2014-2020 Claudiu Popa <pcmanticore@gmail.com> # Copyright (c) 2014 Google, Inc. diff --git a/astroid/raw_building.py b/astroid/raw_building.py index 6d2d343a..5b8c201d 100644 --- a/astroid/raw_building.py +++ b/astroid/raw_building.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2006-2014 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2012 FELD Boris <lothiraldan@gmail.com> # Copyright (c) 2014-2020 Claudiu Popa <pcmanticore@gmail.com> diff --git a/astroid/rebuilder.py b/astroid/rebuilder.py index 4dd99c6e..66d3aa2c 100644 --- a/astroid/rebuilder.py +++ b/astroid/rebuilder.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2009-2014 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2013-2020 Claudiu Popa <pcmanticore@gmail.com> # Copyright (c) 2013-2014 Google, Inc. diff --git a/astroid/scoped_nodes.py b/astroid/scoped_nodes.py index 1472067a..0567ac3e 100644 --- a/astroid/scoped_nodes.py +++ b/astroid/scoped_nodes.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2006-2014 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2010 Daniel Harding <dharding@gmail.com> # Copyright (c) 2011, 2013-2015 Google, Inc. diff --git a/doc/conf.py b/doc/conf.py index b235b36b..80c843c1 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # # Astroid documentation build configuration file, created by # sphinx-quickstart on Wed Jun 26 15:00:40 2013. diff --git a/tests/unittest_brain.py b/tests/unittest_brain.py index cc6a46da..f3e5b61e 100644 --- a/tests/unittest_brain.py +++ b/tests/unittest_brain.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2013-2014 Google, Inc. # Copyright (c) 2014-2020 Claudiu Popa <pcmanticore@gmail.com> # Copyright (c) 2015-2016 Ceridwen <ceridwenv@gmail.com> diff --git a/tests/unittest_brain_numpy_core_fromnumeric.py b/tests/unittest_brain_numpy_core_fromnumeric.py index 268c120f..cfec2ecb 100644 --- a/tests/unittest_brain_numpy_core_fromnumeric.py +++ b/tests/unittest_brain_numpy_core_fromnumeric.py @@ -1,4 +1,3 @@ -# -*- encoding=utf-8 -*- # Copyright (c) 2019-2020 hippo91 <guillaume.peillex@gmail.com> # Copyright (c) 2019 Ashley Whetter <ashley@awhetter.co.uk> # Copyright (c) 2020 Claudiu Popa <pcmanticore@gmail.com> diff --git a/tests/unittest_brain_numpy_core_function_base.py b/tests/unittest_brain_numpy_core_function_base.py index 1926399f..bb9dc346 100644 --- a/tests/unittest_brain_numpy_core_function_base.py +++ b/tests/unittest_brain_numpy_core_function_base.py @@ -1,4 +1,3 @@ -# -*- encoding=utf-8 -*- # Copyright (c) 2019-2020 hippo91 <guillaume.peillex@gmail.com> # Copyright (c) 2019 Ashley Whetter <ashley@awhetter.co.uk> # Copyright (c) 2020 Claudiu Popa <pcmanticore@gmail.com> diff --git a/tests/unittest_brain_numpy_core_multiarray.py b/tests/unittest_brain_numpy_core_multiarray.py index b8deccd0..6df793fe 100644 --- a/tests/unittest_brain_numpy_core_multiarray.py +++ b/tests/unittest_brain_numpy_core_multiarray.py @@ -1,4 +1,3 @@ -# -*- encoding=utf-8 -*- # Copyright (c) 2019-2020 hippo91 <guillaume.peillex@gmail.com> # Copyright (c) 2019 Ashley Whetter <ashley@awhetter.co.uk> # Copyright (c) 2020 Claudiu Popa <pcmanticore@gmail.com> diff --git a/tests/unittest_brain_numpy_core_numeric.py b/tests/unittest_brain_numpy_core_numeric.py index 41ca8a80..8742f641 100644 --- a/tests/unittest_brain_numpy_core_numeric.py +++ b/tests/unittest_brain_numpy_core_numeric.py @@ -1,4 +1,3 @@ -# -*- encoding=utf-8 -*- # Copyright (c) 2019-2020 hippo91 <guillaume.peillex@gmail.com> # Copyright (c) 2019 Ashley Whetter <ashley@awhetter.co.uk> # Copyright (c) 2020 Claudiu Popa <pcmanticore@gmail.com> diff --git a/tests/unittest_brain_numpy_core_numerictypes.py b/tests/unittest_brain_numpy_core_numerictypes.py index 056dd2b7..286d5774 100644 --- a/tests/unittest_brain_numpy_core_numerictypes.py +++ b/tests/unittest_brain_numpy_core_numerictypes.py @@ -1,4 +1,4 @@ -# -*- encoding=utf-8 -*- +# Copyright (c) 2017-2018, 2020 Claudiu Popa <pcmanticore@gmail.com> # Copyright (c) 2017-2020 hippo91 <guillaume.peillex@gmail.com> # Copyright (c) 2017-2018, 2020 Claudiu Popa <pcmanticore@gmail.com> # Copyright (c) 2018 Bryce Guinta <bryce.paul.guinta@gmail.com> diff --git a/tests/unittest_brain_numpy_core_umath.py b/tests/unittest_brain_numpy_core_umath.py index f384ea25..3d550c97 100644 --- a/tests/unittest_brain_numpy_core_umath.py +++ b/tests/unittest_brain_numpy_core_umath.py @@ -1,4 +1,3 @@ -# -*- encoding=utf-8 -*- # Copyright (c) 2019-2020 hippo91 <guillaume.peillex@gmail.com> # Copyright (c) 2019 Ashley Whetter <ashley@awhetter.co.uk> # Copyright (c) 2020 Claudiu Popa <pcmanticore@gmail.com> diff --git a/tests/unittest_brain_numpy_ndarray.py b/tests/unittest_brain_numpy_ndarray.py index e53ce540..3e1365eb 100644 --- a/tests/unittest_brain_numpy_ndarray.py +++ b/tests/unittest_brain_numpy_ndarray.py @@ -1,4 +1,3 @@ -# -*- encoding=utf-8 -*- # Copyright (c) 2017-2020 hippo91 <guillaume.peillex@gmail.com> # Copyright (c) 2017-2018, 2020 Claudiu Popa <pcmanticore@gmail.com> # Copyright (c) 2018 Bryce Guinta <bryce.paul.guinta@gmail.com> diff --git a/tests/unittest_brain_numpy_random_mtrand.py b/tests/unittest_brain_numpy_random_mtrand.py index 0ef325b3..7d1a0ae3 100644 --- a/tests/unittest_brain_numpy_random_mtrand.py +++ b/tests/unittest_brain_numpy_random_mtrand.py @@ -1,4 +1,3 @@ -# -*- encoding=utf-8 -*- # Copyright (c) 2019-2020 hippo91 <guillaume.peillex@gmail.com> # Copyright (c) 2019 Ashley Whetter <ashley@awhetter.co.uk> # Copyright (c) 2020 Claudiu Popa <pcmanticore@gmail.com> diff --git a/tests/unittest_builder.py b/tests/unittest_builder.py index 0eed62f9..f1f74b68 100644 --- a/tests/unittest_builder.py +++ b/tests/unittest_builder.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2006-2014 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2014-2020 Claudiu Popa <pcmanticore@gmail.com> # Copyright (c) 2014-2015 Google, Inc. diff --git a/tests/unittest_inference.py b/tests/unittest_inference.py index 55bbe9e3..bf97b3e3 100644 --- a/tests/unittest_inference.py +++ b/tests/unittest_inference.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2006-2015 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2007 Marien Zwart <marienz@gentoo.org> # Copyright (c) 2013-2014 Google, Inc. diff --git a/tests/unittest_manager.py b/tests/unittest_manager.py index 8c3c24fc..740a9a1f 100644 --- a/tests/unittest_manager.py +++ b/tests/unittest_manager.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2006, 2009-2014 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2013 AndroWiiid <androwiiid@gmail.com> # Copyright (c) 2014-2020 Claudiu Popa <pcmanticore@gmail.com> diff --git a/tests/unittest_modutils.py b/tests/unittest_modutils.py index 765af75a..8bfc8dba 100644 --- a/tests/unittest_modutils.py +++ b/tests/unittest_modutils.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2014-2016, 2018-2020 Claudiu Popa <pcmanticore@gmail.com> # Copyright (c) 2014 Google, Inc. # Copyright (c) 2014 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> diff --git a/tests/unittest_object_model.py b/tests/unittest_object_model.py index 5c2eae1c..60848dea 100644 --- a/tests/unittest_object_model.py +++ b/tests/unittest_object_model.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2016-2020 Claudiu Popa <pcmanticore@gmail.com> # Copyright (c) 2016 Derek Gustafson <degustaf@gmail.com> # Copyright (c) 2017 Łukasz Rogalski <rogalski.91@gmail.com> diff --git a/tests/unittest_protocols.py b/tests/unittest_protocols.py index 293e634a..60d9b33c 100644 --- a/tests/unittest_protocols.py +++ b/tests/unittest_protocols.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2015-2020 Claudiu Popa <pcmanticore@gmail.com> # Copyright (c) 2015-2016 Ceridwen <ceridwenv@gmail.com> # Copyright (c) 2016 Jakub Wilk <jwilk@jwilk.net> diff --git a/tests/unittest_python3.py b/tests/unittest_python3.py index 8d6eb7bf..4bcf4819 100644 --- a/tests/unittest_python3.py +++ b/tests/unittest_python3.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2010, 2013-2014 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2012 FELD Boris <lothiraldan@gmail.com> # Copyright (c) 2013-2018, 2020 Claudiu Popa <pcmanticore@gmail.com> diff --git a/tests/unittest_scoped_nodes.py b/tests/unittest_scoped_nodes.py index 40de0af7..10229349 100644 --- a/tests/unittest_scoped_nodes.py +++ b/tests/unittest_scoped_nodes.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2006-2014 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr> # Copyright (c) 2011, 2013-2015 Google, Inc. # Copyright (c) 2013-2020 Claudiu Popa <pcmanticore@gmail.com> |