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
3c759144
Kaydet (Commit)
3c759144
authored
May 09, 2008
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Deprecate test.testall for removal in 3.0.
üst
d7265d64
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
1 deletion
+11
-1
zipfile.rst
Doc/library/zipfile.rst
+1
-1
test_py3kwarn.py
Lib/test/test_py3kwarn.py
+2
-0
testall.py
Lib/test/testall.py
+6
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Doc/library/zipfile.rst
Dosyayı görüntüle @
3c759144
...
...
@@ -316,7 +316,7 @@ The :class:`PyZipFile` constructor takes the same parameters as the
string.pyc # Top level name
test/__init__.pyc # Package directory
test/test
all.pyc # Module test.testall
test/test
_support.pyc # Module test.test_support
test/bogus/__init__.pyc # Subpackage directory
test/bogus/myfile.pyc # Submodule test.bogus.myfile
...
...
Lib/test/test_py3kwarn.py
Dosyayı görüntüle @
3c759144
...
...
@@ -126,6 +126,8 @@ class TestPy3KWarnings(unittest.TestCase):
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'
)
def
check_removal
(
self
,
module_name
):
...
...
Lib/test/testall.py
Dosyayı görüntüle @
3c759144
# Backward compatibility -- you should use regrtest instead of this module.
from
warnings
import
warnpy3k
warnpy3k
(
"the test.testall module has been removed in Python 3.0"
,
stacklevel
=
2
)
del
warnpy3k
import
sys
,
regrtest
sys
.
argv
[
1
:]
=
[
"-vv"
]
regrtest
.
main
()
Misc/NEWS
Dosyayı görüntüle @
3c759144
...
...
@@ -20,6 +20,8 @@ Extension Modules
Library
-------
- The test.testall module has been deprecated for removal in Python 3.0.
- The new module has been deprecated for removal in Python 3.0.
- The user 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