blob: 5e562473e2ed93d1d88915a01f3d658a57275cfb [file] [log] [blame]
Éric Araujo3a9f58f2011-06-01 20:42:49 +02001.. temporary file for modules that don't need a dedicated file yet
2
3:mod:`packaging.errors` --- Packaging exceptions
4================================================
5
6.. module:: packaging.errors
7 :synopsis: Packaging exceptions.
8
9
10Provides exceptions used by the Packaging modules. Note that Packaging modules
11may raise standard exceptions; in particular, SystemExit is usually raised for
12errors that are obviously the end-user's fault (e.g. bad command-line arguments).
13
14This module is safe to use in ``from ... import *`` mode; it only exports
15symbols whose names start with ``Packaging`` and end with ``Error``.
16
17
18:mod:`packaging.manifest` --- The Manifest class
19================================================
20
21.. module:: packaging.manifest
22 :synopsis: The Manifest class, used for poking about the file system and
23 building lists of files.
24
25
26This module provides the :class:`Manifest` class, used for poking about the
27filesystem and building lists of files.