srcanamdw/codescanner/pyinstaller/buildtests/test8.py
changeset 1 22878952f6e2
equal deleted inserted replaced
0:509e4801c378 1:22878952f6e2
       
     1 #!/usr/bin/env python
       
     2 # Copyright (C) 2005, Giovanni Bajo
       
     3 # Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc.
       
     4 #
       
     5 # This program is free software; you can redistribute it and/or
       
     6 # modify it under the terms of the GNU General Public License
       
     7 # as published by the Free Software Foundation; either version 2
       
     8 # of the License, or (at your option) any later version.
       
     9 #
       
    10 # This program is distributed in the hope that it will be useful,
       
    11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
       
    13 # GNU General Public License for more details.
       
    14 #
       
    15 # You should have received a copy of the GNU General Public License
       
    16 # along with this program; if not, write to the Free Software
       
    17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
       
    18 import sys
       
    19 
       
    20 try:
       
    21     import codecs
       
    22 except ImportError:
       
    23     print "This test works only with Python versions that support Unicode"
       
    24     sys.exit(0)
       
    25 
       
    26 a = "foo bar"
       
    27 au = codecs.getdecoder("utf-8")(a)[0]
       
    28 b = codecs.getencoder("utf-8")(au)[0]
       
    29 print "codecs working:", a == b
       
    30 assert a == b
       
    31 sys.exit(0)