]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/zlib.3
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.10 / Modules / zlib / zlib.3
diff --git a/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/zlib.3 b/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/zlib.3
deleted file mode 100644 (file)
index 86dfbe2..0000000
+++ /dev/null
@@ -1,151 +0,0 @@
-.TH ZLIB 3 "28 Apr 2013"\r
-.SH NAME\r
-zlib \- compression/decompression library\r
-.SH SYNOPSIS\r
-[see\r
-.I zlib.h\r
-for full description]\r
-.SH DESCRIPTION\r
-The\r
-.I zlib\r
-library is a general purpose data compression library.\r
-The code is thread safe, assuming that the standard library functions\r
-used are thread safe, such as memory allocation routines.\r
-It provides in-memory compression and decompression functions,\r
-including integrity checks of the uncompressed data.\r
-This version of the library supports only one compression method (deflation)\r
-but other algorithms may be added later\r
-with the same stream interface.\r
-.LP\r
-Compression can be done in a single step if the buffers are large enough\r
-or can be done by repeated calls of the compression function.\r
-In the latter case,\r
-the application must provide more input and/or consume the output\r
-(providing more output space) before each call.\r
-.LP\r
-The library also supports reading and writing files in\r
-.IR gzip (1)\r
-(.gz) format\r
-with an interface similar to that of stdio.\r
-.LP\r
-The library does not install any signal handler.\r
-The decoder checks the consistency of the compressed data,\r
-so the library should never crash even in the case of corrupted input.\r
-.LP\r
-All functions of the compression library are documented in the file\r
-.IR zlib.h .\r
-The distribution source includes examples of use of the library\r
-in the files\r
-.I test/example.c\r
-and\r
-.IR test/minigzip.c,\r
-as well as other examples in the\r
-.IR examples/\r
-directory.\r
-.LP\r
-Changes to this version are documented in the file\r
-.I ChangeLog\r
-that accompanies the source.\r
-.LP\r
-.I zlib\r
-is available in Java using the java.util.zip package:\r
-.IP\r
-http://java.sun.com/developer/technicalArticles/Programming/compression/\r
-.LP\r
-A Perl interface to\r
-.IR zlib ,\r
-written by Paul Marquess (pmqs@cpan.org),\r
-is available at CPAN (Comprehensive Perl Archive Network) sites,\r
-including:\r
-.IP\r
-http://search.cpan.org/~pmqs/IO-Compress-Zlib/\r
-.LP\r
-A Python interface to\r
-.IR zlib ,\r
-written by A.M. Kuchling (amk@magnet.com),\r
-is available in Python 1.5 and later versions:\r
-.IP\r
-http://docs.python.org/library/zlib.html\r
-.LP\r
-.I zlib\r
-is built into\r
-.IR tcl:\r
-.IP\r
-http://wiki.tcl.tk/4610\r
-.LP\r
-An experimental package to read and write files in .zip format,\r
-written on top of\r
-.I zlib\r
-by Gilles Vollant (info@winimage.com),\r
-is available at:\r
-.IP\r
-http://www.winimage.com/zLibDll/minizip.html\r
-and also in the\r
-.I contrib/minizip\r
-directory of the main\r
-.I zlib\r
-source distribution.\r
-.SH "SEE ALSO"\r
-The\r
-.I zlib\r
-web site can be found at:\r
-.IP\r
-http://zlib.net/\r
-.LP\r
-The data format used by the zlib library is described by RFC\r
-(Request for Comments) 1950 to 1952 in the files:\r
-.IP\r
-http://tools.ietf.org/html/rfc1950 (for the zlib header and trailer format)\r
-.br\r
-http://tools.ietf.org/html/rfc1951 (for the deflate compressed data format)\r
-.br\r
-http://tools.ietf.org/html/rfc1952 (for the gzip header and trailer format)\r
-.LP\r
-Mark Nelson wrote an article about\r
-.I zlib\r
-for the Jan. 1997 issue of  Dr. Dobb's Journal;\r
-a copy of the article is available at:\r
-.IP\r
-http://marknelson.us/1997/01/01/zlib-engine/\r
-.SH "REPORTING PROBLEMS"\r
-Before reporting a problem,\r
-please check the\r
-.I zlib\r
-web site to verify that you have the latest version of\r
-.IR zlib ;\r
-otherwise,\r
-obtain the latest version and see if the problem still exists.\r
-Please read the\r
-.I zlib\r
-FAQ at:\r
-.IP\r
-http://zlib.net/zlib_faq.html\r
-.LP\r
-before asking for help.\r
-Send questions and/or comments to zlib@gzip.org,\r
-or (for the Windows DLL version) to Gilles Vollant (info@winimage.com).\r
-.SH AUTHORS\r
-Version 1.2.8\r
-Copyright (C) 1995-2013 Jean-loup Gailly (jloup@gzip.org)\r
-and Mark Adler (madler@alumni.caltech.edu).\r
-.LP\r
-This software is provided "as-is,"\r
-without any express or implied warranty.\r
-In no event will the authors be held liable for any damages\r
-arising from the use of this software.\r
-See the distribution directory with respect to requirements\r
-governing redistribution.\r
-The deflate format used by\r
-.I zlib\r
-was defined by Phil Katz.\r
-The deflate and\r
-.I zlib\r
-specifications were written by L. Peter Deutsch.\r
-Thanks to all the people who reported problems and suggested various\r
-improvements in\r
-.IR zlib ;\r
-who are too numerous to cite here.\r
-.LP\r
-UNIX manual page by R. P. C. Rodgers,\r
-U.S. National Library of Medicine (rodgers@nlm.nih.gov).\r
-.\" end of man page\r