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
a03722f2
Kaydet (Commit)
a03722f2
authored
Haz 12, 2008
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
deprecated mimetools
üst
ffae3067
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
3 deletions
+12
-3
mimetools.rst
Doc/library/mimetools.rst
+2
-1
mimetools.py
Lib/mimetools.py
+3
-0
test_mimetools.py
Lib/test/test_mimetools.py
+4
-1
test_py3kwarn.py
Lib/test/test_py3kwarn.py
+1
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Doc/library/mimetools.rst
Dosyayı görüntüle @
a03722f2
...
...
@@ -9,7 +9,8 @@
.. deprecated:: 2.3
The :mod:`email` package should be used in preference to the :mod:`mimetools`
module. This module is present only to maintain backward compatibility.
module. This module is present only to maintain backward compatibility, and
it has been removed in 3.x.
.. index:: module: rfc822
...
...
Lib/mimetools.py
Dosyayı görüntüle @
a03722f2
...
...
@@ -5,6 +5,9 @@ import os
import
rfc822
import
tempfile
from
warnings
import
warnpy3k
warnpy3k
(
"in 3.x, mimetools has been removed in favor of the email package"
)
__all__
=
[
"Message"
,
"choose_boundary"
,
"encode"
,
"decode"
,
"copyliteral"
,
"copybinary"
]
...
...
Lib/test/test_mimetools.py
Dosyayı görüntüle @
a03722f2
import
unittest
from
test
import
test_support
import
string
,
StringIO
,
mimetools
import
string
import
StringIO
mimetools
=
test_support
.
import_module
(
"mimetools"
,
deprecated
=
True
)
msgtext1
=
mimetools
.
Message
(
StringIO
.
StringIO
(
"""Content-Type: text/plain; charset=iso-8859-1; format=flowed
...
...
Lib/test/test_py3kwarn.py
Dosyayı görüntüle @
a03722f2
...
...
@@ -197,7 +197,7 @@ class TestStdlibRemovals(unittest.TestCase):
# test.testall not tested as it executes all unit tests as an
# import side-effect.
all_platforms
=
(
'audiodev'
,
'imputil'
,
'mutex'
,
'user'
,
'new'
,
'rexec'
,
'Bastion'
,
'compiler'
,
'dircache'
,
'fpformat'
,
'Bastion'
,
'compiler'
,
'dircache'
,
'
mimetools'
,
'
fpformat'
,
'ihooks'
,
'mhlib'
,
'statvfs'
,
'htmllib'
,
'sgmllib'
)
inclusive_platforms
=
{
'irix'
:
(
'pure'
,
'AL'
,
'al'
,
'CD'
,
'cd'
,
'cddb'
,
'cdplayer'
,
'CL'
,
'cl'
,
'DEVICE'
,
'GL'
,
...
...
Misc/NEWS
Dosyayı görüntüle @
a03722f2
...
...
@@ -84,6 +84,8 @@ Extension Modules
Library
-------
- The mimetools module has been deprecated for removal in 3.0.
- The ctypes.byref function now takes an optional second parameter
which allows to specify an offset in bytes for the constructed
pointer-like object.
...
...
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