summaryrefslogtreecommitdiff
path: root/Lib/test/test_shlex.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-10-27 18:52:48 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2010-10-27 18:52:48 +0000
commitd72402effcc3ab4dd8dbdfc1e6f12aebcf3d3e13 (patch)
tree84c50ff069ed27b1b807ab64d49ce5b69be31e9b /Lib/test/test_shlex.py
parent6b03ee603315ac9e69332c8f2d064de0a98c3f15 (diff)
downloadcpython-git-d72402effcc3ab4dd8dbdfc1e6f12aebcf3d3e13.tar.gz
Recode modules from latin-1 to utf-8
Diffstat (limited to 'Lib/test/test_shlex.py')
-rw-r--r--Lib/test/test_shlex.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/test/test_shlex.py b/Lib/test/test_shlex.py
index 1685938d79..25e4b6df6c 100644
--- a/Lib/test/test_shlex.py
+++ b/Lib/test/test_shlex.py
@@ -1,4 +1,3 @@
-# -*- coding: iso-8859-1 -*-
import unittest
import os, sys, io
import shlex
@@ -68,7 +67,7 @@ foo\ x\x\""|foo|\|x|\|x|\|""|
foo\ bar|foo|\|bar|
foo#bar\nbaz|foobaz|
:-) ;-)|:|-|)|;|-|)|
-áéíóú|á|é|í|ó|ú|
+áéíóú|á|é|í|ó|ú|
"""
posix_data = r"""x|x|
@@ -132,7 +131,7 @@ foo\ x\x\"|foo xx"|
foo\ bar|foo bar|
foo#bar\nbaz|foo|baz|
:-) ;-)|:-)|;-)|
-áéíóú|áéíóú|
+áéíóú|áéíóú|
"""
class ShlexTest(unittest.TestCase):