comparison mercurial/encoding.py @ 8226:8b2cd04a6e97

put license and copyright info into comment blocks
author Martin Geisler <mg@lazybytes.net>
date Sun, 26 Apr 2009 01:13:08 +0200
parents 46293a0c7e9f
children b87a50b7125c
comparison
equal deleted inserted replaced
8225:46293a0c7e9f 8226:8b2cd04a6e97
1 """ 1 # encoding.py - character transcoding support for Mercurial
2 encoding.py - character transcoding support for Mercurial 2 #
3 3 # Copyright 2005-2009 Matt Mackall <mpm@selenic.com> and others
4 Copyright 2005-2009 Matt Mackall <mpm@selenic.com> and others 4 #
5 5 # This software may be used and distributed according to the terms of the
6 This software may be used and distributed according to the terms of the 6 # GNU General Public License version 2, incorporated herein by reference.
7 GNU General Public License version 2, incorporated herein by reference.
8 """
9 7
10 import sys, unicodedata, locale, os, error 8 import sys, unicodedata, locale, os, error
11 9
12 _encodingfixup = {'646': 'ascii', 'ANSI_X3.4-1968': 'ascii'} 10 _encodingfixup = {'646': 'ascii', 'ANSI_X3.4-1968': 'ascii'}
13 11