diff options
author | Éric Araujo <merwok@netwok.org> | 2011-06-06 18:07:04 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-06-06 18:07:04 (GMT) |
commit | 9808dac192601960916e4300633a1d1818be92c7 (patch) | |
tree | 42729ac90395bd70eee52c5937003f33988a6c38 /Lib/sysconfig.cfg | |
parent | fdeb8bf292fb0734548174002b59abe9f1a0ac76 (diff) | |
download | cpython-9808dac192601960916e4300633a1d1818be92c7.zip cpython-9808dac192601960916e4300633a1d1818be92c7.tar.gz cpython-9808dac192601960916e4300633a1d1818be92c7.tar.bz2 |
Update comments in sysconfig.cfg
Diffstat (limited to 'Lib/sysconfig.cfg')
-rw-r--r-- | Lib/sysconfig.cfg | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Lib/sysconfig.cfg b/Lib/sysconfig.cfg index 1f6b8bc..573b12e 100644 --- a/Lib/sysconfig.cfg +++ b/Lib/sysconfig.cfg @@ -1,24 +1,24 @@ [globals] -# These are the useful categories that are sometimes referenced at runtime, -# using packaging.resources.get_file: +# These are useful categories that can be referenced at run time, +# using packaging.database.get_file. # Configuration files config = {confdir}/{distribution.name} # Non-writable data that is independent of architecture (images, many xml/text files) appdata = {datadir}/{distribution.name} # Non-writable data that is architecture-dependent (some binary data formats) appdata.arch = {libdir}/{distribution.name} -# Data, written by the package, that must be preserved (databases) +# Data, written by the app/lib, that must be preserved (databases) appdata.persistent = {statedir}/lib/{distribution.name} -# Data, written by the package, that can be safely discarded (cache) +# Data, written by the app/lib, that can be safely discarded (cache) appdata.disposable = {statedir}/cache/{distribution.name} -# Help or documentation files referenced at runtime +# Help or documentation files help = {datadir}/{distribution.name} icon = {datadir}/pixmaps scripts = {base}/bin # Non-runtime files. These are valid categories for marking files for -# install, but they should not be referenced by the app at runtime: -# Help or documentation files not referenced by the package at runtime +# install, but they should not be referenced by the app/lib at run time. +# Help or documentation files doc = {datadir}/doc/{distribution.name} # GNU info documentation files info = {datadir}/info |