Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
bd40bbe7
Kaydet (Commit)
bd40bbe7
authored
Eyl 22, 2002
tarafından
cvs2svn
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
This commit was manufactured by cvs2svn to create branch
'release22-maint'.
üst
5877bc3d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
340 additions
and
0 deletions
+340
-0
libasynchat.tex
Doc/lib/libasynchat.tex
+0
-0
_compat21.py
Lib/email/_compat21.py
+63
-0
_compat22.py
Lib/email/_compat22.py
+60
-0
msg_31.txt
Lib/email/test/data/msg_31.txt
+15
-0
test_email_torture.py
Lib/email/test/test_email_torture.py
+136
-0
test_multifile.py
Lib/test/test_multifile.py
+66
-0
No files found.
Doc/lib/libasynchat.tex
0 → 100644
Dosyayı görüntüle @
bd40bbe7
This diff is collapsed.
Click to expand it.
Lib/email/_compat21.py
0 → 100644
Dosyayı görüntüle @
bd40bbe7
# Copyright (C) 2002 Python Software Foundation
# Author: barry@zope.com
"""Module containing compatibility functions for Python 2.1.
"""
from
cStringIO
import
StringIO
from
types
import
StringType
,
UnicodeType
# This function will become a method of the Message class
def
walk
(
self
):
"""Walk over the message tree, yielding each subpart.
The walk is performed in depth-first order. This method is a
generator.
"""
parts
=
[]
parts
.
append
(
self
)
if
self
.
is_multipart
():
for
subpart
in
self
.
get_payload
():
parts
.
extend
(
subpart
.
walk
())
return
parts
# Python 2.2 spells floor division //
def
_floordiv
(
i
,
j
):
"""Do a floor division, i/j."""
return
i
/
j
def
_isstring
(
obj
):
return
isinstance
(
obj
,
StringType
)
or
isinstance
(
obj
,
UnicodeType
)
# These two functions are imported into the Iterators.py interface module.
# The Python 2.2 version uses generators for efficiency.
def
body_line_iterator
(
msg
):
"""Iterate over the parts, returning string payloads line-by-line."""
lines
=
[]
for
subpart
in
msg
.
walk
():
payload
=
subpart
.
get_payload
()
if
_isstring
(
payload
):
for
line
in
StringIO
(
payload
)
.
readlines
():
lines
.
append
(
line
)
return
lines
def
typed_subpart_iterator
(
msg
,
maintype
=
'text'
,
subtype
=
None
):
"""Iterate over the subparts with a given MIME type.
Use `maintype' as the main MIME type to match against; this defaults to
"text". Optional `subtype' is the MIME subtype to match against; if
omitted, only the main type is matched.
"""
parts
=
[]
for
subpart
in
msg
.
walk
():
if
subpart
.
get_main_type
(
'text'
)
==
maintype
:
if
subtype
is
None
or
subpart
.
get_subtype
(
'plain'
)
==
subtype
:
parts
.
append
(
subpart
)
return
parts
Lib/email/_compat22.py
0 → 100644
Dosyayı görüntüle @
bd40bbe7
# Copyright (C) 2002 Python Software Foundation
# Author: barry@zope.com
"""Module containing compatibility functions for Python 2.1.
"""
from
__future__
import
generators
from
__future__
import
division
from
cStringIO
import
StringIO
from
types
import
StringTypes
# This function will become a method of the Message class
def
walk
(
self
):
"""Walk over the message tree, yielding each subpart.
The walk is performed in depth-first order. This method is a
generator.
"""
yield
self
if
self
.
is_multipart
():
for
subpart
in
self
.
get_payload
():
for
subsubpart
in
subpart
.
walk
():
yield
subsubpart
# Python 2.2 spells floor division //
def
_floordiv
(
i
,
j
):
"""Do a floor division, i/j."""
return
i
//
j
def
_isstring
(
obj
):
return
isinstance
(
obj
,
StringTypes
)
# These two functions are imported into the Iterators.py interface module.
# The Python 2.2 version uses generators for efficiency.
def
body_line_iterator
(
msg
):
"""Iterate over the parts, returning string payloads line-by-line."""
for
subpart
in
msg
.
walk
():
payload
=
subpart
.
get_payload
()
if
_isstring
(
payload
):
for
line
in
StringIO
(
payload
):
yield
line
def
typed_subpart_iterator
(
msg
,
maintype
=
'text'
,
subtype
=
None
):
"""Iterate over the subparts with a given MIME type.
Use `maintype' as the main MIME type to match against; this defaults to
"text". Optional `subtype' is the MIME subtype to match against; if
omitted, only the main type is matched.
"""
for
subpart
in
msg
.
walk
():
if
subpart
.
get_main_type
(
'text'
)
==
maintype
:
if
subtype
is
None
or
subpart
.
get_subtype
(
'plain'
)
==
subtype
:
yield
subpart
Lib/email/test/data/msg_31.txt
0 → 100644
Dosyayı görüntüle @
bd40bbe7
From: aperson@dom.ain
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary=BOUNDARY_
--BOUNDARY
Content-Type: text/plain
message 1
--BOUNDARY
Content-Type: text/plain
message 2
--BOUNDARY--
Lib/email/test/test_email_torture.py
0 → 100644
Dosyayı görüntüle @
bd40bbe7
# Copyright (C) 2002 Python Software Foundation
#
# A torture test of the email package. This should not be run as part of the
# standard Python test suite since it requires several meg of email messages
# collected in the wild. These source messages are not checked into the
# Python distro, but are available as part of the standalone email package at
# http://sf.net/projects/mimelib
import
sys
import
os
import
unittest
from
cStringIO
import
StringIO
from
types
import
ListType
from
email.test.test_email
import
TestEmailBase
from
test.test_support
import
TestSkipped
import
email
from
email
import
__file__
as
testfile
from
email.Iterators
import
_structure
def
openfile
(
filename
):
from
os.path
import
join
,
dirname
,
abspath
path
=
abspath
(
join
(
dirname
(
testfile
),
os
.
pardir
,
'moredata'
,
filename
))
return
open
(
path
,
'rb'
)
# Prevent this test from running in the Python distro
try
:
openfile
(
'crispin-torture.txt'
)
except
IOError
:
raise
TestSkipped
class
TortureBase
(
TestEmailBase
):
def
_msgobj
(
self
,
filename
):
fp
=
openfile
(
filename
)
try
:
msg
=
email
.
message_from_file
(
fp
)
finally
:
fp
.
close
()
return
msg
class
TestCrispinTorture
(
TortureBase
):
# Mark Crispin's torture test from the SquirrelMail project
def
test_mondo_message
(
self
):
eq
=
self
.
assertEqual
neq
=
self
.
ndiffAssertEqual
msg
=
self
.
_msgobj
(
'crispin-torture.txt'
)
payload
=
msg
.
get_payload
()
eq
(
type
(
payload
),
ListType
)
eq
(
len
(
payload
),
12
)
eq
(
msg
.
preamble
,
None
)
eq
(
msg
.
epilogue
,
'
\n\n
'
)
# Probably the best way to verify the message is parsed correctly is to
# dump its structure and compare it against the known structure.
fp
=
StringIO
()
_structure
(
msg
,
fp
=
fp
)
neq
(
fp
.
getvalue
(),
"""
\
multipart/mixed
text/plain
message/rfc822
multipart/alternative
text/plain
multipart/mixed
text/richtext
application/andrew-inset
message/rfc822
audio/basic
audio/basic
image/pbm
message/rfc822
multipart/mixed
multipart/mixed
text/plain
audio/x-sun
multipart/mixed
image/gif
image/gif
application/x-be2
application/atomicmail
audio/x-sun
message/rfc822
multipart/mixed
text/plain
image/pgm
text/plain
message/rfc822
multipart/mixed
text/plain
image/pbm
message/rfc822
application/postscript
image/gif
message/rfc822
multipart/mixed
audio/basic
audio/basic
message/rfc822
multipart/mixed
application/postscript
text/plain
message/rfc822
multipart/mixed
text/plain
multipart/parallel
image/gif
audio/basic
application/atomicmail
message/rfc822
audio/x-sun
"""
)
def
_testclasses
():
mod
=
sys
.
modules
[
__name__
]
return
[
getattr
(
mod
,
name
)
for
name
in
dir
(
mod
)
if
name
.
startswith
(
'Test'
)]
def
suite
():
suite
=
unittest
.
TestSuite
()
for
testclass
in
_testclasses
():
suite
.
addTest
(
unittest
.
makeSuite
(
testclass
))
return
suite
def
test_main
():
for
testclass
in
_testclasses
():
test_support
.
run_unittest
(
testclass
)
if
__name__
==
'__main__'
:
unittest
.
main
(
defaultTest
=
'suite'
)
Lib/test/test_multifile.py
0 → 100644
Dosyayı görüntüle @
bd40bbe7
import
mimetools
import
multifile
import
cStringIO
msg
=
"""Mime-Version: 1.0
Content-Type: multipart/mixed;
boundary="=====================_590453667==_"
X-OriginalArrivalTime: 05 Feb 2002 03:43:23.0310 (UTC) FILETIME=[42D88CE0:01C1ADF7]
--=====================_590453667==_
Content-Type: multipart/alternative;
boundary="=====================_590453677==_.ALT"
--=====================_590453677==_.ALT
Content-Type: text/plain; charset="us-ascii"; format=flowed
test A
--=====================_590453677==_.ALT
Content-Type: text/html; charset="us-ascii"
<html>
<b>test B</font></b></html>
--=====================_590453677==_.ALT--
--=====================_590453667==_
Content-Type: text/plain; charset="us-ascii"
Content-Disposition: attachment; filename="att.txt"
Attached Content.
Attached Content.
Attached Content.
Attached Content.
--=====================_590453667==_--
"""
boundaries
=
0
linecount
=
0
def
getMIMEMsg
(
mf
):
global
boundaries
,
linecount
msg
=
mimetools
.
Message
(
mf
)
#print "TYPE: %s" % msg.gettype()
if
msg
.
getmaintype
()
==
'multipart'
:
boundary
=
msg
.
getparam
(
"boundary"
)
boundaries
+=
1
mf
.
push
(
boundary
)
while
mf
.
next
():
getMIMEMsg
(
mf
)
mf
.
pop
()
else
:
lines
=
mf
.
readlines
()
linecount
+=
len
(
lines
)
def
main
():
f
=
cStringIO
.
StringIO
(
msg
)
getMIMEMsg
(
multifile
.
MultiFile
(
f
))
assert
boundaries
==
2
assert
linecount
==
9
if
__name__
==
'__main__'
:
main
()
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