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
42bfa90f
Kaydet (Commit)
42bfa90f
authored
May 12, 2008
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Depreate imageop for removal in 3.0.
üst
b61d801a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
7 deletions
+15
-7
imageop.rst
Doc/library/imageop.rst
+4
-1
test_imageop.py
Lib/test/test_imageop.py
+3
-4
test_py3kwarn.py
Lib/test/test_py3kwarn.py
+1
-2
NEWS
Misc/NEWS
+2
-0
imageop.c
Modules/imageop.c
+5
-0
No files found.
Doc/library/imageop.rst
Dosyayı görüntüle @
42bfa90f
...
...
@@ -4,7 +4,10 @@
.. module:: imageop
:synopsis: Manipulate raw image data.
:deprecated:
.. deprecated:: 2.6
The :mod:`imageop` module has been removed in Python 3.0.
The :mod:`imageop` module contains some useful operations on images. It operates
on images consisting of 8 or 32 bit pixels stored in Python strings. This is
...
...
Lib/test/test_imageop.py
Dosyayı görüntüle @
42bfa90f
...
...
@@ -5,11 +5,10 @@
Roger E. Masse
"""
from
test.test_support
import
verbose
,
unlink
from
test.test_support
import
verbose
,
unlink
,
import_module
import
imageop
,
uu
,
os
,
imgfile
import
warnings
imageop
=
import_module
(
'imageop'
,
deprecated
=
True
)
import
uu
,
os
,
imgfile
def
test_main
():
...
...
Lib/test/test_py3kwarn.py
Dosyayı görüntüle @
42bfa90f
...
...
@@ -132,8 +132,7 @@ class TestStdlibRemovals(unittest.TestCase):
'Bastion'
,
'compiler'
,
'dircache'
,
'fpformat'
,
'ihooks'
,
'mhlib'
)
inclusive_platforms
=
{
'irix'
:(
'pure'
,)}
# XXX Don't know if lib-tk is only installed if _tkinter is built.
optional_modules
=
(
'bsddb185'
,
'Canvas'
,
'dl'
,
'linuxaudiodev'
)
optional_modules
=
(
'bsddb185'
,
'Canvas'
,
'dl'
,
'linuxaudiodev'
,
'imageop'
)
def
check_removal
(
self
,
module_name
,
optional
=
False
):
"""Make sure the specified module, when imported, raises a
...
...
Misc/NEWS
Dosyayı görüntüle @
42bfa90f
...
...
@@ -23,6 +23,8 @@ Extension Modules
Library
-------
- The imageop module has been deprecated for removal in Python 3.0.
- #2250: Exceptions raised during evaluation of names in rlcompleter's
``Completer.complete()`` method are now caught and ignored.
...
...
Modules/imageop.c
Dosyayı görüntüle @
42bfa90f
...
...
@@ -775,6 +775,11 @@ PyMODINIT_FUNC
initimageop
(
void
)
{
PyObject
*
m
;
if
(
PyErr_WarnPy3k
(
"the imageop module has been removed in "
"Python 3.0"
,
2
)
<
0
)
return
;
m
=
Py_InitModule
(
"imageop"
,
imageop_methods
);
if
(
m
==
NULL
)
return
;
...
...
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