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
455f7bdc
Kaydet (Commit)
455f7bdc
authored
Tem 27, 2010
tarafından
Alexander Belopolsky
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #9378: python -m pickle <pickle file> will now load and display
the first object in the pickle file.
üst
9a381c7a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
1 deletion
+26
-1
pickle.py
Lib/pickle.py
+23
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/pickle.py
Dosyayı görüntüle @
455f7bdc
...
...
@@ -1322,4 +1322,26 @@ def _test():
return
doctest
.
testmod
()
if
__name__
==
"__main__"
:
_test
()
import
sys
,
argparse
parser
=
argparse
.
ArgumentParser
(
description
=
'display contents of the pickle files'
)
parser
.
add_argument
(
'pickle_file'
,
type
=
argparse
.
FileType
(
'br'
),
nargs
=
'*'
,
help
=
'the pickle file'
)
parser
.
add_argument
(
'-t'
,
'--test'
,
action
=
'store_true'
,
help
=
'run self-test suite'
)
parser
.
add_argument
(
'-v'
,
action
=
'store_true'
,
help
=
'run verbosely; only affects self-test run'
)
args
=
parser
.
parse_args
()
if
args
.
test
:
_test
()
else
:
if
not
args
.
pickle_file
:
parser
.
print_help
()
else
:
import
pprint
for
f
in
args
.
pickle_file
:
obj
=
load
(
f
)
pprint
.
pprint
(
obj
)
Misc/NEWS
Dosyayı görüntüle @
455f7bdc
...
...
@@ -473,6 +473,9 @@ C-API
Library
-------
- Issue #9378: python -m pickle <pickle file> will now load and
display the first object in the pickle file.
- Issue #4770: Restrict binascii module to accept only bytes (as specified).
And fix the email package to encode to ASCII instead of
``raw-unicode-escape`` before ASCII-to-binary decoding.
...
...
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