Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between 'coding=utf8' and '-*- coding: utf-8 -*-'?

Is there any difference between using

#coding=utf8

and

# -*- coding: utf-8 -*-

What about

# encoding: utf-8
like image 867
orome Avatar asked Nov 30 '13 15:11

orome


1 Answers

There is no difference; Python recognizes all 3. It looks for the pattern:

coding[:=]\s*([-\w.]+)

on the first two lines of the file (which also must start with a #).

That's the literal text 'coding', followed by either a colon or an equals sign, followed by optional whitespace. Any word, dash or dot characters following that pattern are read as the codec.

The -*- is an Emacs-specific syntax; letting the text editor know what encoding to use. It makes the comment useful to two tools. VIM supports similar syntax.

See PEP 263: Defining Python Source Code Encodings.

like image 126
Martijn Pieters Avatar answered Sep 21 '22 23:09

Martijn Pieters