fixed file encoding python3
authorRichard Penman
Wed, 02 Mar 2016 10:15:03 +0000
branchpython3
changeset 74 4f9e0d921642
parent 73 644d81a7995b
child 75 81859268375c
child 76 15046f9af464
fixed file encoding
whois/parser.py
--- a/whois/parser.py	Sun Feb 07 23:40:59 2016 +0100
+++ b/whois/parser.py	Wed Mar 02 10:15:03 2016 +0000
@@ -1,3 +1,10 @@
+# coding=utf-8
+# parser.py - Module for parsing whois response data
+# Copyright (c) 2008 Andrey Petrov
+#
+# This module is part of pywhois and is released under
+# the MIT license: http://www.opensource.org/licenses/mit-license.php
+
 from __future__ import absolute_import
 from __future__ import unicode_literals
 from __future__ import print_function
@@ -7,13 +14,6 @@
 from builtins import *
 from builtins import str
 from past.builtins import basestring
-# coding=utf-8
-# parser.py - Module for parsing whois response data
-# Copyright (c) 2008 Andrey Petrov
-#
-# This module is part of pywhois and is released under
-# the MIT license: http://www.opensource.org/licenses/mit-license.php
-
 
 import json
 from datetime import datetime