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
96756b6a
Kaydet (Commit)
96756b6a
authored
Eyl 20, 2014
tarafından
Berker Peksag
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #22247: Add NNTPError to nntplib.__all__.
üst
fc4ead24
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
7 deletions
+16
-7
nntplib.py
Lib/nntplib.py
+2
-2
test_nntplib.py
Lib/test/test_nntplib.py
+12
-5
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/nntplib.py
Dosyayı görüntüle @
96756b6a
...
...
@@ -80,8 +80,8 @@ from email.header import decode_header as _email_decode_header
from
socket
import
_GLOBAL_DEFAULT_TIMEOUT
__all__
=
[
"NNTP"
,
"NNTP
ReplyError"
,
"NNTPTemporaryError"
,
"NNTPPermanent
Error"
,
"NNTPProtocolError"
,
"NNTPDataError"
,
"NNTP
Error"
,
"NNTPReplyError"
,
"NNTPTemporary
Error"
,
"NNTPP
ermanentError"
,
"NNTPP
rotocolError"
,
"NNTPDataError"
,
"decode_header"
,
]
...
...
Lib/test/test_nntplib.py
Dosyayı görüntüle @
96756b6a
...
...
@@ -1412,11 +1412,18 @@ class MiscTests(unittest.TestCase):
def
test_ssl_support
(
self
):
self
.
assertTrue
(
hasattr
(
nntplib
,
'NNTP_SSL'
))
def
test_main
():
tests
=
[
MiscTests
,
NNTPv1Tests
,
NNTPv2Tests
,
CapsAfterLoginNNTPv2Tests
,
SendReaderNNTPv2Tests
,
NetworkedNNTPTests
,
NetworkedNNTP_SSLTests
]
support
.
run_unittest
(
*
tests
)
class
PublicAPITests
(
unittest
.
TestCase
):
"""Ensures that the correct values are exposed in the public API."""
def
test_module_all_attribute
(
self
):
self
.
assertTrue
(
hasattr
(
nntplib
,
'__all__'
))
target_api
=
[
'NNTP'
,
'NNTPError'
,
'NNTPReplyError'
,
'NNTPTemporaryError'
,
'NNTPPermanentError'
,
'NNTPProtocolError'
,
'NNTPDataError'
,
'decode_header'
]
if
ssl
is
not
None
:
target_api
.
append
(
'NNTP_SSL'
)
self
.
assertEqual
(
set
(
nntplib
.
__all__
),
set
(
target_api
))
if
__name__
==
"__main__"
:
test_
main
()
unittest
.
main
()
Misc/NEWS
Dosyayı görüntüle @
96756b6a
...
...
@@ -32,6 +32,8 @@ Core and Builtins
Library
-------
- Issue #22247: Add NNTPError to nntplib.__all__.
- Issue #4180: The warnings registries are now reset when the filters
are modified.
...
...
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