Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
d72402ef
Commit
d72402ef
authored
Oct 27, 2010
by
Antoine Pitrou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Recode modules from latin-1 to utf-8
parent
6b03ee60
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
12 deletions
+9
-12
Lib/shlex.py
Lib/shlex.py
+2
-3
Lib/test/test_sax.py
Lib/test/test_sax.py
+3
-3
Lib/test/test_shlex.py
Lib/test/test_shlex.py
+2
-3
Lib/test/test_unicode.py
Lib/test/test_unicode.py
+2
-3
No files found.
Lib/shlex.py
View file @
d72402ef
# -*- coding: iso-8859-1 -*-
"""A lexical analyzer class for simple shell-like syntaxes."""
# Module and documentation by Eric S. Raymond, 21 Dec 1998
...
...
@@ -35,8 +34,8 @@ class shlex:
self
.
wordchars
=
(
'abcdfeghijklmnopqrstuvwxyz'
'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_'
)
if
self
.
posix
:
self
.
wordchars
+=
(
''
''
)
self
.
wordchars
+=
(
'
ßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ
'
'
ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞ
'
)
self
.
whitespace
=
'
\
t
\
r
\
n
'
self
.
whitespace_split
=
False
self
.
quotes
=
'
\
'
"'
...
...
Lib/test/test_sax.py
View file @
d72402ef
# regression test for SAX 2.0
-*- coding: iso-8859-1 -*-
# regression test for SAX 2.0
# $Id$
from
xml.sax
import
make_parser
,
ContentHandler
,
\
...
...
@@ -114,7 +114,7 @@ class SaxutilsTest(unittest.TestCase):
"<Donald Duck & Co>"
)
def
test_escape_extra
(
self
):
self
.
assertEquals
(
escape
(
"Hei p
deg"
,
{
"
"
:
"å"
}),
self
.
assertEquals
(
escape
(
"Hei p
å deg"
,
{
"å
"
:
"å"
}),
"Hei på deg"
)
# ===== unescape
...
...
@@ -126,7 +126,7 @@ class SaxutilsTest(unittest.TestCase):
"<Donald Duck & Co>"
)
def
test_unescape_extra
(
self
):
self
.
assertEquals
(
unescape
(
"Hei p
deg"
,
{
"
"
:
"å"
}),
self
.
assertEquals
(
unescape
(
"Hei p
å deg"
,
{
"å
"
:
"å"
}),
"Hei på deg"
)
def
test_unescape_amp_extra
(
self
):
...
...
Lib/test/test_shlex.py
View file @
d72402ef
# -*- 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
):
...
...
Lib/test/test_unicode.py
View file @
d72402ef
# -*- coding: iso-8859-1 -*-
""" Test script for the Unicode implementation.
Written by Marc-Andre Lemburg (mal@lemburg.com).
...
...
@@ -403,11 +402,11 @@ class UnicodeTest(string_tests.CommonTest,
self
.
assertTrue
(
"b0"
.
isidentifier
())
self
.
assertTrue
(
"bc"
.
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
(
"0"
.
isidentifier
())
def
test_isprintable
(
self
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment