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
640b1ca5
Kaydet (Commit)
640b1ca5
authored
Agu 10, 2016
tarafından
Zachary Ware
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #27209: Fix doctests in Doc/library/email*.rst
Patch by Jelle Zijlstra.
üst
c90fccdf
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
30 deletions
+29
-30
email.iterators.rst
Doc/library/email.iterators.rst
+5
-5
email.message.rst
Doc/library/email.message.rst
+10
-10
email.policy.rst
Doc/library/email.policy.rst
+14
-15
No files found.
Doc/library/email.iterators.rst
Dosyayı görüntüle @
640b1ca5
...
@@ -50,9 +50,9 @@ The following function has been added as a useful debugging tool. It should
...
@@ -50,9 +50,9 @@ The following function has been added as a useful debugging tool. It should
.. testsetup::
.. testsetup::
>>>
import email
import email
>>>
from email.iterators import _structure
from email.iterators import _structure
>>> somefile = open('
Lib/test/test_email/data/msg_02.txt')
somefile = open('../
Lib/test/test_email/data/msg_02.txt')
.. doctest::
.. doctest::
...
@@ -74,9 +74,9 @@ The following function has been added as a useful debugging tool. It should
...
@@ -74,9 +74,9 @@ The following function has been added as a useful debugging tool. It should
text/plain
text/plain
text/plain
text/plain
.. test
set
up::
.. test
clean
up::
>>>
somefile.close()
somefile.close()
Optional *fp* is a file-like object to print the output to. It must be
Optional *fp* is a file-like object to print the output to. It must be
suitable for Python's :func:`print` function. *level* is used internally.
suitable for Python's :func:`print` function. *level* is used internally.
...
...
Doc/library/email.message.rst
Dosyayı görüntüle @
640b1ca5
...
@@ -602,10 +602,10 @@ Here are the methods of the :class:`Message` class:
...
@@ -602,10 +602,10 @@ Here are the methods of the :class:`Message` class:
.. testsetup::
.. testsetup::
>>>
from email import message_from_binary_file
from email import message_from_binary_file
>>> with open('
Lib/test/test_email/data/msg_16.txt', 'rb') as f:
with open('../
Lib/test/test_email/data/msg_16.txt', 'rb') as f:
...
msg = message_from_binary_file(f)
msg = message_from_binary_file(f)
>>>
from email.iterators import _structure
from email.iterators import _structure
.. doctest::
.. doctest::
...
@@ -628,7 +628,7 @@ Here are the methods of the :class:`Message` class:
...
@@ -628,7 +628,7 @@ Here are the methods of the :class:`Message` class:
.. doctest::
.. doctest::
>>> for part in msg.walk():
>>> for part in msg.walk():
... print(part.get_content_maintype() == 'multipart'
)
,
... print(part.get_content_maintype() == 'multipart',
... part.is_multipart())
... part.is_multipart())
True True
True True
False False
False False
...
@@ -640,11 +640,11 @@ Here are the methods of the :class:`Message` class:
...
@@ -640,11 +640,11 @@ Here are the methods of the :class:`Message` class:
>>> _structure(msg)
>>> _structure(msg)
multipart/report
multipart/report
text/plain
text/plain
message/delivery-status
message/delivery-status
text/plain
text/plain
text/plain
text/plain
message/rfc822
message/rfc822
text/plain
text/plain
Here the ``message`` parts are not ``multiparts``, but they do contain
Here the ``message`` parts are not ``multiparts``, but they do contain
subparts. ``is_multipart()`` returns ``True`` and ``walk`` descends
subparts. ``is_multipart()`` returns ``True`` and ``walk`` descends
...
...
Doc/library/email.policy.rst
Dosyayı görüntüle @
640b1ca5
...
@@ -63,16 +63,15 @@ file on disk and pass it to the system ``sendmail`` program on a Unix system:
...
@@ -63,16 +63,15 @@ file on disk and pass it to the system ``sendmail`` program on a Unix system:
.. testsetup::
.. testsetup::
>>> from unittest import mock
from unittest import mock
>>> mocker = mock.patch('subprocess.Popen')
mocker = mock.patch('subprocess.Popen')
>>> m = mocker.start()
m = mocker.start()
>>> proc = mock.MagicMock()
proc = mock.MagicMock()
>>> m.return_value = proc
m.return_value = proc
>>> proc.stdin.close.return_value = None
proc.stdin.close.return_value = None
>>> mymsg = open('mymsg.txt', 'w')
mymsg = open('mymsg.txt', 'w')
>>> mymsg.write('To: abc@xyz.com\n\n')
mymsg.write('To: abc@xyz.com\n\n')
17
mymsg.flush()
>>> mymsg.flush()
.. doctest::
.. doctest::
...
@@ -88,12 +87,12 @@ file on disk and pass it to the system ``sendmail`` program on a Unix system:
...
@@ -88,12 +87,12 @@ file on disk and pass it to the system ``sendmail`` program on a Unix system:
>>> p.stdin.close()
>>> p.stdin.close()
>>> rc = p.wait()
>>> rc = p.wait()
.. test
set
up::
.. test
clean
up::
>>>
mymsg.close()
mymsg.close()
>>>
mocker.stop()
mocker.stop()
>>>
import os
import os
>>>
os.remove('mymsg.txt')
os.remove('mymsg.txt')
Here we are telling :class:`~email.generator.BytesGenerator` to use the RFC
Here we are telling :class:`~email.generator.BytesGenerator` to use the RFC
correct line separator characters when creating the binary string to feed into
correct line separator characters when creating the binary string to feed into
...
...
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