mercurial/encoding.py
changeset 8225 46293a0c7e9f
parent 7948 de377b1a9a84
child 8226 8b2cd04a6e97
equal deleted inserted replaced
8224:1075f5c1b3fa 8225:46293a0c7e9f
     1 """
     1 """
     2 encoding.py - character transcoding support for Mercurial
     2 encoding.py - character transcoding support for Mercurial
     3 
     3 
     4  Copyright 2005-2009 Matt Mackall <mpm@selenic.com> and others
     4  Copyright 2005-2009 Matt Mackall <mpm@selenic.com> and others
     5 
     5 
     6 This software may be used and distributed according to the terms of
     6 This software may be used and distributed according to the terms of the
     7 the GNU General Public License version 2, incorporated herein by
     7 GNU General Public License version 2, incorporated herein by reference.
     8 reference.
       
     9 """
     8 """
    10 
     9 
    11 import sys, unicodedata, locale, os, error
    10 import sys, unicodedata, locale, os, error
    12 
    11 
    13 _encodingfixup = {'646': 'ascii', 'ANSI_X3.4-1968': 'ascii'}
    12 _encodingfixup = {'646': 'ascii', 'ANSI_X3.4-1968': 'ascii'}