Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision 479c73973a24610b0d9c4a16243bb13d9cdecc6f authored by David Douard on 05 June 2009, 12:11:25 UTC, committed by David Douard on 05 June 2009, 12:11:25 UTC
2 parent s fa34d81 + b71e0ba
Raw File
Tip revision: 479c73973a24610b0d9c4a16243bb13d9cdecc6f authored by David Douard on 05 June 2009, 12:11:25 UTC
merge closed new_qt_ui branch (it's now 'default')
Tip revision: 479c739
util.py
# -*- coding: utf-8 -*-
# util functions
#
# Copyright (C) 2009 Logilab. All rights reserved.
#
# This software may be used and distributed according to the terms
# of the GNU General Public License, incorporated herein by reference.

def tounicode(s):
    """
    Tries to convert s into a unicode string
    """
    for encoding in ('utf-8', 'iso-8859-15', 'cp1252'):
        try:
            return unicode(s, encoding)
        except UnicodeDecodeError:
            pass
    return unicode(s, 'utf-8', 'replace')
        
        
    
back to top