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
6d58d649
Kaydet (Commit)
6d58d649
authored
Mar 20, 2011
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #11127: Raise a TypeError when trying to pickle a socket object.
üst
b938bcd2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
0 deletions
+12
-0
socket.py
Lib/socket.py
+3
-0
test_socket.py
Lib/test/test_socket.py
+7
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/socket.py
Dosyayı görüntüle @
6d58d649
...
...
@@ -112,6 +112,9 @@ class socket(_socket.socket):
s
[
7
:])
return
s
def
__getstate__
(
self
):
raise
TypeError
(
"Cannot serialize socket object"
)
def
dup
(
self
):
"""dup() -> socket object
...
...
Lib/test/test_socket.py
Dosyayı görüntüle @
6d58d649
...
...
@@ -18,6 +18,7 @@ import contextlib
from
weakref
import
proxy
import
signal
import
math
import
pickle
try
:
import
fcntl
except
ImportError
:
...
...
@@ -764,6 +765,12 @@ class GeneralModuleTests(unittest.TestCase):
fp
.
close
()
self
.
assertEqual
(
repr
(
fp
),
"<_io.BufferedReader name=-1>"
)
def
test_pickle
(
self
):
sock
=
socket
.
socket
()
with
sock
:
for
protocol
in
range
(
pickle
.
HIGHEST_PROTOCOL
+
1
):
self
.
assertRaises
(
TypeError
,
pickle
.
dumps
,
sock
,
protocol
)
@unittest.skipUnless
(
thread
,
'Threading required for this test.'
)
class
BasicTCPTest
(
SocketConnectedTest
):
...
...
Misc/NEWS
Dosyayı görüntüle @
6d58d649
...
...
@@ -83,6 +83,8 @@ Library
-
Issue
#
4391
:
Use
proper
gettext
plural
forms
in
optparse
.
-
Issue
#
11127
:
Raise
a
TypeError
when
trying
to
pickle
a
socket
object
.
-
Issue
#
11563
:
Connection
:
close
header
is
sent
by
requests
using
URLOpener
class
which
helps
in
closing
of
sockets
after
connection
is
over
.
Patch
contributions
by
Jeff
McNeil
and
Nadeem
Vawda
.
...
...
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