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
ed79783b
Kaydet (Commit)
ed79783b
authored
Ock 22, 1998
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Converted to use new macros. This example demonstrate \method{} and, more
importantly, \url{}.
üst
55f44928
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
32 deletions
+34
-32
libzlib.tex
Doc/lib/libzlib.tex
+17
-16
libzlib.tex
Doc/libzlib.tex
+17
-16
No files found.
Doc/lib/libzlib.tex
Dosyayı görüntüle @
ed79783b
...
...
@@ -7,7 +7,7 @@
For applications that require data compression, the functions in this
module allow compression and decompression, using the zlib library,
which is based on GNU zip. The zlib library has its own home page at
\
code
{
http://www.cdrom.com/pub/infozip/zlib/
}
.
\
url
{
http://www.cdrom.com/pub/infozip/zlib/
}
.
Version 1.0.4 is the most recent version as of December, 1997; use a
later version if one is available.
...
...
@@ -27,18 +27,19 @@ The available functions in this module are:
\begin{funcdesc}
{
compress
}{
string
\optional
{
\,
level
}}
Compresses the data in
\var
{
string
}
, returning a string contained
compressed data.
\var
{
level
}
is an integer from 1 to 9 controlling
the level of compression; 1 is fastest and produces the least
compression, 9 is slowest and produces the most. The default value is
6. Raises the
\code
{
zlib.error
}
exception if any error occurs.
compressed data.
\var
{
level
}
is an integer from
\code
{
1
}
to
\code
{
9
}
controlling the level of compression;
\code
{
1
}
is fastest and produces
the least compression,
\code
{
9
}
is slowest and produces the most. The
default value is
\code
{
6
}
. Raises the
\exception
{
zlib.error
}
exception if any error occurs.
\end{funcdesc}
\begin{funcdesc}
{
compressobj
}{
\optional
{
level
}}
Returns a compression object, to be used for compressing data streams
Returns a compression object, to be used for compressing data streams
that won't fit into memory at once.
\var
{
level
}
is an integer from
1 to 9 controlling the level of compression; 1 is fastest and
produces the least compression, 9 is slowest and produces the most.
The default value is 6
.
\code
{
1
}
to
\code
{
9
}
controlling the level of compression;
\code
{
1
}
is
fastest and produces the least compression,
\code
{
9
}
is slowest and
produces the most. The default value is
\code
{
6
}
.
\end{funcdesc}
\begin{funcdesc}
{
crc32
}{
string
\optional
{
\,
value
}}
...
...
@@ -52,7 +53,7 @@ Returns a compression object, to be used for compressing data streams
\begin{funcdesc}
{
decompress
}{
string
}
Decompresses the data in
\var
{
string
}
, returning a string containing
the uncompressed data. Raises the
\
code
{
zlib.error
}
exception if any
the uncompressed data. Raises the
\
exception
{
zlib.error
}
exception if any
error occurs.
\end{funcdesc}
...
...
@@ -69,14 +70,14 @@ Compression objects support the following methods:
Compress
\var
{
string
}
, returning a string containing compressed data
for at least part of the data in
\var
{
string
}
. This data should be
concatenated to the output produced by any preceding calls to the
\
code
{
compress()
}
method. Some input may be kept in internal buffers
\
method
{
compress()
}
method. Some input may be kept in internal buffers
for later processing.
\end{funcdesc}
\begin{funcdesc}
{
flush
}{}
All pending input is processed, and an string containing the remaining
compressed output is returned. After calling
\
code
{
flush()
}
, the
\
code
{
compress()
}
method cannot be called again; the only realistic
compressed output is returned. After calling
\
method
{
flush()
}
, the
\
method
{
compress()
}
method cannot be called again; the only realistic
action is to delete the object.
\end{funcdesc}
...
...
@@ -87,14 +88,14 @@ Decompress \var{string}, returning a string containing the
uncompressed data corresponding to at least part of the data in
\var
{
string
}
. This data should be concatenated to the output produced
by any preceding calls to the
\
code
{
decompress()
}
method. Some of the input data may be preserved
\
method
{
decompress()
}
method. Some of the input data may be preserved
in internal buffers for later processing.
\end{funcdesc}
\begin{funcdesc}
{
flush
}{}
All pending input is processed, and a string containing the remaining
uncompressed output is returned. After calling
\
code
{
flush()
}
, the
\
code
{
decompress()
}
method cannot be called again; the only realistic
uncompressed output is returned. After calling
\
method
{
flush()
}
, the
\
method
{
decompress()
}
method cannot be called again; the only realistic
action is to delete the object.
\end{funcdesc}
...
...
Doc/libzlib.tex
Dosyayı görüntüle @
ed79783b
...
...
@@ -7,7 +7,7 @@
For applications that require data compression, the functions in this
module allow compression and decompression, using the zlib library,
which is based on GNU zip. The zlib library has its own home page at
\
code
{
http://www.cdrom.com/pub/infozip/zlib/
}
.
\
url
{
http://www.cdrom.com/pub/infozip/zlib/
}
.
Version 1.0.4 is the most recent version as of December, 1997; use a
later version if one is available.
...
...
@@ -27,18 +27,19 @@ The available functions in this module are:
\begin{funcdesc}
{
compress
}{
string
\optional
{
\,
level
}}
Compresses the data in
\var
{
string
}
, returning a string contained
compressed data.
\var
{
level
}
is an integer from 1 to 9 controlling
the level of compression; 1 is fastest and produces the least
compression, 9 is slowest and produces the most. The default value is
6. Raises the
\code
{
zlib.error
}
exception if any error occurs.
compressed data.
\var
{
level
}
is an integer from
\code
{
1
}
to
\code
{
9
}
controlling the level of compression;
\code
{
1
}
is fastest and produces
the least compression,
\code
{
9
}
is slowest and produces the most. The
default value is
\code
{
6
}
. Raises the
\exception
{
zlib.error
}
exception if any error occurs.
\end{funcdesc}
\begin{funcdesc}
{
compressobj
}{
\optional
{
level
}}
Returns a compression object, to be used for compressing data streams
Returns a compression object, to be used for compressing data streams
that won't fit into memory at once.
\var
{
level
}
is an integer from
1 to 9 controlling the level of compression; 1 is fastest and
produces the least compression, 9 is slowest and produces the most.
The default value is 6
.
\code
{
1
}
to
\code
{
9
}
controlling the level of compression;
\code
{
1
}
is
fastest and produces the least compression,
\code
{
9
}
is slowest and
produces the most. The default value is
\code
{
6
}
.
\end{funcdesc}
\begin{funcdesc}
{
crc32
}{
string
\optional
{
\,
value
}}
...
...
@@ -52,7 +53,7 @@ Returns a compression object, to be used for compressing data streams
\begin{funcdesc}
{
decompress
}{
string
}
Decompresses the data in
\var
{
string
}
, returning a string containing
the uncompressed data. Raises the
\
code
{
zlib.error
}
exception if any
the uncompressed data. Raises the
\
exception
{
zlib.error
}
exception if any
error occurs.
\end{funcdesc}
...
...
@@ -69,14 +70,14 @@ Compression objects support the following methods:
Compress
\var
{
string
}
, returning a string containing compressed data
for at least part of the data in
\var
{
string
}
. This data should be
concatenated to the output produced by any preceding calls to the
\
code
{
compress()
}
method. Some input may be kept in internal buffers
\
method
{
compress()
}
method. Some input may be kept in internal buffers
for later processing.
\end{funcdesc}
\begin{funcdesc}
{
flush
}{}
All pending input is processed, and an string containing the remaining
compressed output is returned. After calling
\
code
{
flush()
}
, the
\
code
{
compress()
}
method cannot be called again; the only realistic
compressed output is returned. After calling
\
method
{
flush()
}
, the
\
method
{
compress()
}
method cannot be called again; the only realistic
action is to delete the object.
\end{funcdesc}
...
...
@@ -87,14 +88,14 @@ Decompress \var{string}, returning a string containing the
uncompressed data corresponding to at least part of the data in
\var
{
string
}
. This data should be concatenated to the output produced
by any preceding calls to the
\
code
{
decompress()
}
method. Some of the input data may be preserved
\
method
{
decompress()
}
method. Some of the input data may be preserved
in internal buffers for later processing.
\end{funcdesc}
\begin{funcdesc}
{
flush
}{}
All pending input is processed, and a string containing the remaining
uncompressed output is returned. After calling
\
code
{
flush()
}
, the
\
code
{
decompress()
}
method cannot be called again; the only realistic
uncompressed output is returned. After calling
\
method
{
flush()
}
, the
\
method
{
decompress()
}
method cannot be called again; the only realistic
action is to delete the object.
\end{funcdesc}
...
...
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