---
- 88: Added support for resolving certain directories on a
system to platform-friendly locations using the `appdirs
<https://pypi.python.org/pypi/appdirs/1.4.0>`_ library. The
``Path.special`` method returns an ``SpecialResolver`` instance
that will resolve a path in a scope
(i.e. 'site' or 'user') and class (i.e. 'config', 'cache',
'data'). For
example, to create a config directory for "My App"::
config_dir = Path.special("My App").user.config.makedirs_p()
``config_dir`` will exist in a user context and will be in a
suitable platform-friendly location.
As ``path.py`` does not currently have any dependencies, and
to retain that expectation for a compatible upgrade path,
``appdirs`` must be installed to avoid an ImportError when
invoking ``special``.
- 88: In order to support "multipath" results, where multiple
paths are returned in a single, ``os.pathsep``-separated
string, a new class MultiPath now represents those special
results. This functionality is experimental and may change.
Feedback is invited.