Kaydet (Commit) d72402ef authored tarafından Antoine Pitrou's avatar Antoine Pitrou

Recode modules from latin-1 to utf-8

üst 6b03ee60
# -*- coding: iso-8859-1 -*-
"""A lexical analyzer class for simple shell-like syntaxes.""" """A lexical analyzer class for simple shell-like syntaxes."""
# Module and documentation by Eric S. Raymond, 21 Dec 1998 # Module and documentation by Eric S. Raymond, 21 Dec 1998
...@@ -35,8 +34,8 @@ class shlex: ...@@ -35,8 +34,8 @@ class shlex:
self.wordchars = ('abcdfeghijklmnopqrstuvwxyz' self.wordchars = ('abcdfeghijklmnopqrstuvwxyz'
'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_') 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_')
if self.posix: if self.posix:
self.wordchars += ('' self.wordchars += ('ßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ'
'') 'ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞ')
self.whitespace = ' \t\r\n' self.whitespace = ' \t\r\n'
self.whitespace_split = False self.whitespace_split = False
self.quotes = '\'"' self.quotes = '\'"'
......
# regression test for SAX 2.0 -*- coding: iso-8859-1 -*- # regression test for SAX 2.0
# $Id$ # $Id$
from xml.sax import make_parser, ContentHandler, \ from xml.sax import make_parser, ContentHandler, \
...@@ -114,7 +114,7 @@ class SaxutilsTest(unittest.TestCase): ...@@ -114,7 +114,7 @@ class SaxutilsTest(unittest.TestCase):
"<Donald Duck & Co>") "<Donald Duck & Co>")
def test_escape_extra(self): def test_escape_extra(self):
self.assertEquals(escape("Hei p deg", {"" : "å"}), self.assertEquals(escape("Hei på deg", {" : "å"}),
"Hei på deg") "Hei på deg")
# ===== unescape # ===== unescape
...@@ -126,7 +126,7 @@ class SaxutilsTest(unittest.TestCase): ...@@ -126,7 +126,7 @@ class SaxutilsTest(unittest.TestCase):
"<Donald Duck & Co>") "<Donald Duck & Co>")
def test_unescape_extra(self): def test_unescape_extra(self):
self.assertEquals(unescape("Hei p deg", {"" : "&aring;"}), self.assertEquals(unescape("Hei på deg", {" : "&aring;"}),
"Hei p&aring; deg") "Hei p&aring; deg")
def test_unescape_amp_extra(self): def test_unescape_amp_extra(self):
......
# -*- coding: iso-8859-1 -*-
import unittest import unittest
import os, sys, io import os, sys, io
import shlex import shlex
...@@ -68,7 +67,7 @@ foo\ x\x\""|foo|\|x|\|x|\|""| ...@@ -68,7 +67,7 @@ foo\ x\x\""|foo|\|x|\|x|\|""|
foo\ bar|foo|\|bar| foo\ bar|foo|\|bar|
foo#bar\nbaz|foobaz| foo#bar\nbaz|foobaz|
:-) ;-)|:|-|)|;|-|)| :-) ;-)|:|-|)|;|-|)|
|||||| áéíóú|á|é|í|ó|ú|
""" """
posix_data = r"""x|x| posix_data = r"""x|x|
...@@ -132,7 +131,7 @@ foo\ x\x\"|foo xx"| ...@@ -132,7 +131,7 @@ foo\ x\x\"|foo xx"|
foo\ bar|foo bar| foo\ bar|foo bar|
foo#bar\nbaz|foo|baz| foo#bar\nbaz|foo|baz|
:-) ;-)|:-)|;-)| :-) ;-)|:-)|;-)|
|| áéíóú|áéíóú|
""" """
class ShlexTest(unittest.TestCase): class ShlexTest(unittest.TestCase):
......
# -*- coding: iso-8859-1 -*-
""" Test script for the Unicode implementation. """ Test script for the Unicode implementation.
Written by Marc-Andre Lemburg (mal@lemburg.com). Written by Marc-Andre Lemburg (mal@lemburg.com).
...@@ -403,11 +402,11 @@ class UnicodeTest(string_tests.CommonTest, ...@@ -403,11 +402,11 @@ class UnicodeTest(string_tests.CommonTest,
self.assertTrue("b0".isidentifier()) self.assertTrue("b0".isidentifier())
self.assertTrue("bc".isidentifier()) self.assertTrue("bc".isidentifier())
self.assertTrue("b_".isidentifier()) self.assertTrue("b_".isidentifier())
self.assertTrue("".isidentifier()) self.assertTrue("µ".isidentifier())
self.assertFalse(" ".isidentifier()) self.assertFalse(" ".isidentifier())
self.assertFalse("[".isidentifier()) self.assertFalse("[".isidentifier())
self.assertFalse("".isidentifier()) self.assertFalse("©".isidentifier())
self.assertFalse("0".isidentifier()) self.assertFalse("0".isidentifier())
def test_isprintable(self): def test_isprintable(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment