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
b96d8020
Commit
b96d8020
authored
Oct 07, 2000
by
Marc-André Lemburg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated test with a case which checks for the bug reported in
parent
de49583a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
0 deletions
+1
-0
Lib/test/test_unicode.py
Lib/test/test_unicode.py
+1
-0
No files found.
Lib/test/test_unicode.py
View file @
b96d8020
...
...
@@ -341,6 +341,7 @@ assert '...%(foo)s...' % {u'foo':u"abc"} == u'...abc...'
assert
'...%(foo)s...'
%
{
u'foo'
:
u"abc"
,
'def'
:
123
}
==
u'...abc...'
assert
'...%(foo)s...'
%
{
u'foo'
:
u"abc"
,
u'def'
:
123
}
==
u'...abc...'
assert
'...%s...%s...%s...%s...'
%
(
1
,
2
,
3
,
u"abc"
)
==
u'...1...2...3...abc...'
assert
'...%%...%%s...%s...%s...%s...%s...'
%
(
1
,
2
,
3
,
u"abc"
)
==
u'...%...%s...1...2...3...abc...'
assert
'...%s...'
%
u"abc"
==
u'...abc...'
print
'done.'
...
...
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