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
27508d4e
Kaydet (Commit)
27508d4e
authored
May 10, 2008
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Deprecate ihooks for removal in 3.0.
üst
2bca2122
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
2 deletions
+9
-2
undoc.rst
Doc/library/undoc.rst
+2
-0
ihooks.py
Lib/ihooks.py
+3
-1
test_py3kwarn.py
Lib/test/test_py3kwarn.py
+2
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Doc/library/undoc.rst
Dosyayı görüntüle @
27508d4e
...
...
@@ -21,6 +21,8 @@ Some of these are very old and/or not very robust; marked with "hmm."
:mod:`ihooks`
--- Import hook support (for :mod:`rexec`; may become obsolete).
.. warning:: The ihooks module has been removed in Python 3.0.
Platform specific modules
...
...
Lib/ihooks.py
Dosyayı görüntüle @
27508d4e
...
...
@@ -49,7 +49,9 @@ by the way the __import__ hook is used by the Python interpreter.) It
would also do wise to install a different version of reload().
"""
from
warnings
import
warnpy3k
warnpy3k
(
"the ihooks module has been removed in Python 3.0"
,
stacklevel
=
2
)
del
warnpy3k
import
__builtin__
import
imp
...
...
Lib/test/test_py3kwarn.py
Dosyayı görüntüle @
27508d4e
...
...
@@ -129,7 +129,8 @@ 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'
,
'fpformat'
,
'ihooks'
)
inclusive_platforms
=
{
'irix'
:(
'pure'
,)}
# XXX Don't know if lib-tk is only installed if _tkinter is built.
optional_modules
=
(
'bsddb185'
,
'Canvas'
,
'dl'
)
...
...
Misc/NEWS
Dosyayı görüntüle @
27508d4e
...
...
@@ -23,6 +23,8 @@ Extension Modules
Library
-------
- The ihooks module has been deprecated for removal in Python 3.0.
- The fpformat module has been deprecated for removal in Python 3.0.
- The dl module has been deprecated for removal in Python 3.0.
...
...
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