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
9d5e4aa4
Commit
9d5e4aa4
authored
Jun 01, 2002
by
Barry Warsaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bump to version 2.0.5, and also use absolute import paths.
parent
2f514a80
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Lib/email/__init__.py
Lib/email/__init__.py
+3
-3
No files found.
Lib/email/__init__.py
View file @
9d5e4aa4
...
...
@@ -4,7 +4,7 @@
"""A package for parsing, handling, and generating email messages.
"""
__version__
=
'2.0.
4
'
__version__
=
'2.0.
5
'
__all__
=
[
'Charset'
,
'Encoders'
,
...
...
@@ -29,8 +29,8 @@ __all__ = ['Charset',
# Some convenience routines
from
Parser
import
Parser
as
_Parser
from
Message
import
Message
as
_Message
from
email.
Parser
import
Parser
as
_Parser
from
email.
Message
import
Message
as
_Message
def
message_from_string
(
s
,
_class
=
_Message
):
return
_Parser
(
_class
).
parsestr
(
s
)
...
...
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