summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-04-11 21:59:58 +0200
committerJason R. Coombs <jaraco@jaraco.com>2016-04-11 21:59:58 +0200
commit06c95ce1dbb64a0fd2bd26e944d08a7577ce783a (patch)
tree24f8fb58165ce2e9e68c0206506459b8640b6e13
parent4582466b53d2f76dbdbba263537f31502816821e (diff)
parent52d420e6309d2be19e848cfb32a43191e4623e6b (diff)
downloadpython-setuptools-git-06c95ce1dbb64a0fd2bd26e944d08a7577ce783a.tar.gz
Merge pull request #542 from ncoghlan/patch-1
Update rationale for the zip_safe flag
-rw-r--r--docs/setuptools.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/setuptools.txt b/docs/setuptools.txt
index eeeab937..57818281 100644
--- a/docs/setuptools.txt
+++ b/docs/setuptools.txt
@@ -1270,7 +1270,8 @@ Creating System Packages
Setting the ``zip_safe`` flag
-----------------------------
-For maximum performance, Python packages are best installed as zip files.
+For some use cases (such as bundling as part of a larger application), Python
+packages may be run directly from a zip file.
Not all packages, however, are capable of running in compressed form, because
they may expect to be able to access either source code or data files as
normal operating system files. So, ``setuptools`` can install your project