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
f70a538f
Kaydet (Commit)
f70a538f
authored
Ock 18, 2009
tarafından
Jesse Noller
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issues #10867: remove old cPickle imports from multiprocessing
üst
38d54f78
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
10 deletions
+5
-10
forking.py
Lib/multiprocessing/forking.py
+1
-5
managers.py
Lib/multiprocessing/managers.py
+1
-5
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/multiprocessing/forking.py
Dosyayı görüntüle @
f70a538f
...
...
@@ -151,14 +151,10 @@ else:
import
_subprocess
import
time
from
pickle
import
dump
,
load
,
HIGHEST_PROTOCOL
from
._multiprocessing
import
win32
,
Connection
,
PipeConnection
from
.util
import
Finalize
#try:
# from cPickle import dump, load, HIGHEST_PROTOCOL
#except ImportError:
from
pickle
import
load
,
HIGHEST_PROTOCOL
def
dump
(
obj
,
file
,
protocol
=
None
):
ForkingPickler
(
file
,
protocol
)
.
dump
(
obj
)
...
...
Lib/multiprocessing/managers.py
Dosyayı görüntüle @
f70a538f
...
...
@@ -21,16 +21,12 @@ import array
import
queue
from
traceback
import
format_exc
from
pickle
import
PicklingError
from
multiprocessing
import
Process
,
current_process
,
active_children
,
Pool
,
util
,
connection
from
multiprocessing.process
import
AuthenticationString
from
multiprocessing.forking
import
exit
,
Popen
,
assert_spawning
,
ForkingPickler
from
multiprocessing.util
import
Finalize
,
info
try
:
from
cPickle
import
PicklingError
except
ImportError
:
from
pickle
import
PicklingError
#
# Register some things for pickling
#
...
...
Misc/NEWS
Dosyayı görüntüle @
f70a538f
...
...
@@ -132,6 +132,9 @@ Core and Builtins
Library
-------
- Issue #10867: Remove python2.x try: except: imports for old cPickle from
multiprocessing.
- Issue #4959: inspect.formatargspec now works for keyword only arguments
without defaults.
...
...
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