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
e8bbc52d
Kaydet (Commit)
e8bbc52d
authored
Eki 09, 2018
tarafından
Stéphane Wirtel
Kaydeden (comit)
Julien Palard
Eki 09, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-23596: Use argparse for the command line of gzip (GH-9781)
Co-authored-by:
Antony Lee
<
anntzer.lee@gmail.com
>
üst
84eec119
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
13 deletions
+13
-13
gzip.py
Lib/gzip.py
+12
-13
2018-10-09-23-51-07.bpo-23596.rdnert.rst
...EWS.d/next/Tests/2018-10-09-23-51-07.bpo-23596.rdnert.rst
+1
-0
No files found.
Lib/gzip.py
Dosyayı görüntüle @
e8bbc52d
...
...
@@ -532,18 +532,17 @@ def decompress(data):
return
f
.
read
()
def
_test
():
# Act like gzip; with -d, act like gunzip.
# The input file is not deleted, however, nor are any other gzip
# options or features supported.
args
=
sys
.
argv
[
1
:]
decompress
=
args
and
args
[
0
]
==
"-d"
if
decompress
:
args
=
args
[
1
:]
if
not
args
:
args
=
[
"-"
]
for
arg
in
args
:
if
decompress
:
def
main
():
from
argparse
import
ArgumentParser
parser
=
ArgumentParser
(
description
=
"A simple command line interface for the gzip module: act like gzip, "
"but do not delete the input file."
)
parser
.
add_argument
(
"-d"
,
"--decompress"
,
action
=
"store_true"
,
help
=
"act like gunzip instead of gzip"
)
parser
.
add_argument
(
"args"
,
nargs
=
"*"
,
default
=
[
"-"
],
metavar
=
'file'
)
args
=
parser
.
parse_args
()
for
arg
in
args
.
args
:
if
args
.
decompress
:
if
arg
==
"-"
:
f
=
GzipFile
(
filename
=
""
,
mode
=
"rb"
,
fileobj
=
sys
.
stdin
.
buffer
)
g
=
sys
.
stdout
.
buffer
...
...
@@ -571,4 +570,4 @@ def _test():
f
.
close
()
if
__name__
==
'__main__'
:
_test
()
main
()
Misc/NEWS.d/next/Tests/2018-10-09-23-51-07.bpo-23596.rdnert.rst
0 → 100644
Dosyayı görüntüle @
e8bbc52d
Use argparse for the command line of the gzip module. Patch by Antony Lee
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