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
4793aa39
Commit
4793aa39
authored
Jul 28, 2006
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch #1529686: also run test_email_codecs with regrtest.py.
parent
39d7739e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
7 deletions
+11
-7
Lib/test/test_email_codecs.py
Lib/test/test_email_codecs.py
+8
-4
Misc/NEWS
Misc/NEWS
+3
-3
No files found.
Lib/test/test_email_codecs.py
View file @
4793aa39
# Copyright (C) 2002 Python Software Foundation
# email package unit tests for (optional) Asian codecs
import
unittest
# The specific tests now live in Lib/email/test
from
email.test.test_email_codecs
import
suite
from
email.test
import
test_email_codecs
from
email.test
import
test_email_codecs_renamed
from
test
import
test_support
def
test_main
():
suite
=
test_email_codecs
.
suite
()
suite
.
addTest
(
test_email_codecs_renamed
.
suite
())
test_support
.
run_suite
(
suite
)
if
__name__
==
'__main__'
:
unittest
.
main
(
defaultTest
=
'suite'
)
test_main
(
)
Misc/NEWS
View file @
4793aa39
...
...
@@ -142,9 +142,9 @@ Tests
how long the test file should take to play. Now accepts taking 2.93 secs
(exact time) +/- 10% instead of the hard-coded 3.1 sec.
- Patch #1529686: The standard tests ``test_defaultdict``, ``test_iterlen``
and ``test_uuid`` didn'
t
actually
run
any
tests
when
run
via
``
regrtest
.
py
``.
Now
they
do
.
- Patch #1529686: The standard tests ``test_defaultdict``, ``test_iterlen``
,
``test_uuid`` and ``test_email_codecs`` didn'
t
actually
run
any
tests
when
run
via
``
regrtest
.
py
``.
Now
they
do
.
What
's New in Python 2.5 beta 2?
...
...
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