From b6b6478cf56b8d0defd158868c91f88c150313ed Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Fri, 9 Jan 2015 21:19:05 +0000 Subject: [PATCH] Remove UTF-8 encoding header from Python files The Python 3.x interpreter assumes source files are in UTF-8 by default, so file encoding headers are no longer necessary. Get rid of them. --- bin/mudpy | 3 +-- bin/test | 3 +-- lib/mudpy/__init__.py | 3 +-- lib/mudpy/data.py | 3 +-- lib/mudpy/misc.py | 3 +-- lib/mudpy/password.py | 3 +-- lib/mudpy/telnet.py | 3 +-- 7 files changed, 7 insertions(+), 14 deletions(-) diff --git a/bin/mudpy b/bin/mudpy index a039d2a..040c5f8 100755 --- a/bin/mudpy +++ b/bin/mudpy @@ -1,8 +1,7 @@ #!/usr/bin/env python -# -*- coding: utf-8 -*- """Skeletal executable for the mudpy engine.""" -# Copyright (c) 2004-2014 Jeremy Stanley . Permission +# Copyright (c) 2004-2015 Jeremy Stanley . Permission # to use, copy, modify, and distribute this software is granted under # terms provided in the LICENSE file distributed with this software. diff --git a/bin/test b/bin/test index 0ec3544..a86ddc6 100755 --- a/bin/test +++ b/bin/test @@ -1,8 +1,7 @@ #!/usr/bin/env python -# -*- coding: utf-8 -*- """Regression test script for the mudpy engine.""" -# Copyright (c) 2004-2013 Jeremy Stanley . Permission +# Copyright (c) 2004-2015 Jeremy Stanley . Permission # to use, copy, modify, and distribute this software is granted under # terms provided in the LICENSE file distributed with this software. diff --git a/lib/mudpy/__init__.py b/lib/mudpy/__init__.py index d04f1b4..5fdefe8 100644 --- a/lib/mudpy/__init__.py +++ b/lib/mudpy/__init__.py @@ -1,7 +1,6 @@ -# -*- coding: utf-8 -*- """Core modules package for the mudpy engine.""" -# Copyright (c) 2004-2013 Jeremy Stanley . Permission +# Copyright (c) 2004-2015 Jeremy Stanley . Permission # to use, copy, modify, and distribute this software is granted under # terms provided in the LICENSE file distributed with this software. diff --git a/lib/mudpy/data.py b/lib/mudpy/data.py index 3eddc43..ca47f83 100644 --- a/lib/mudpy/data.py +++ b/lib/mudpy/data.py @@ -1,7 +1,6 @@ -# -*- coding: utf-8 -*- """Data interface functions for the mudpy engine.""" -# Copyright (c) 2004-2014 Jeremy Stanley . Permission +# Copyright (c) 2004-2015 Jeremy Stanley . Permission # to use, copy, modify, and distribute this software is granted under # terms provided in the LICENSE file distributed with this software. diff --git a/lib/mudpy/misc.py b/lib/mudpy/misc.py index ead6f54..0843586 100644 --- a/lib/mudpy/misc.py +++ b/lib/mudpy/misc.py @@ -1,7 +1,6 @@ -# -*- coding: utf-8 -*- """Miscellaneous functions for the mudpy engine.""" -# Copyright (c) 2004-2014 Jeremy Stanley . Permission +# Copyright (c) 2004-2015 Jeremy Stanley . Permission # to use, copy, modify, and distribute this software is granted under # terms provided in the LICENSE file distributed with this software. diff --git a/lib/mudpy/password.py b/lib/mudpy/password.py index 96a14d8..2e37b91 100644 --- a/lib/mudpy/password.py +++ b/lib/mudpy/password.py @@ -1,7 +1,6 @@ -# -*- coding: utf-8 -*- """Password hashing functions and constants for the mudpy engine.""" -# Copyright (c) 2004-2014 Jeremy Stanley . Permission +# Copyright (c) 2004-2015 Jeremy Stanley . Permission # to use, copy, modify, and distribute this software is granted under # terms provided in the LICENSE file distributed with this software. diff --git a/lib/mudpy/telnet.py b/lib/mudpy/telnet.py index dfac1ee..9feac03 100644 --- a/lib/mudpy/telnet.py +++ b/lib/mudpy/telnet.py @@ -1,7 +1,6 @@ -# -*- coding: utf-8 -*- """Telnet functions and constants for the mudpy engine.""" -# Copyright (c) 2004-2014 Jeremy Stanley . Permission +# Copyright (c) 2004-2015 Jeremy Stanley . Permission # to use, copy, modify, and distribute this software is granted under # terms provided in the LICENSE file distributed with this software. -- 2.11.0