This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: API to get source encoding as defined by PEP 263
Type: enhancement Stage:
Components: Interpreter Core, Library (Lib) Versions: Python 3.1, Python 3.2, Python 2.7
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, lemburg, loewis, srid
Priority: normal Keywords:

Created on 2009-06-08 19:01 by srid, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg89097 - (view) Author: Sridhar Ratnakumar (srid) Date: 2009-06-08 19:01
It'd be nice to get the encoding used by a specific Python file.
Considering that 'print' uses sys.stdout.encoding which is always set to
None when the Python process is run by subprocess, knowing the source
encoding is absolutely necessary in decoding the output generated by
that script.

eg: Run 'python setup.py --author' in the python-wifi-0.3.1 source
package as a subprocess.Popen(...) call.. and print the stdout.read()
string; you'll get encoding error.. unless you do
stdout.read().decode('latin1') .. where latin1 is specified as a coding:
line in setup.py.

The following function tries to detect the coding, but this guess work
not necessary when this is integrated with the standard library whose
implementation maps directly to that of PEP 263.

+def get_python_source_encoding(python_file):
+    """Detect the encoding used in the file ``python_file``
 
+    Detection is done as per http://www.python.org/dev/peps/pep-0263/
+    """
+    first_two_lines = open(python_file).readlines()[:2]
+    coding_line_regexp = ".*coding[:=]\s*([-\w.]+).*"
+
+    for line in first_two_lines:
+        m = re.match(coding_line_regexp, line)
+        if m:
+            return m.group(1)
+
+    # if no encoding is defined, use the default encoding
+    return 'ascii'

ref:
subprocess encoding mess: http://bugs.python.org/issue6135
msg89099 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-06-08 19:05
Already done. tokenize.detect_encoding()
History
Date User Action Args
2022-04-11 14:56:49adminsetgithub: 50489
2009-06-08 19:05:02benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg89099

resolution: not a bug
2009-06-08 19:01:43sridcreate