# Deprecated function that was never documented:
('py:func', 'getargspec'),
('py:func', 'inspect.getargspec'),
+ # Undocumented modules that users shouldn't have to worry about
+ # (implementation details of `os.path`):
+ ('py:mod', 'ntpath'),
+ ('py:mod', 'posixpath'),
]
# Temporary undocumented names.
* Removed support of the *exclude* argument in :meth:`tarfile.TarFile.add`.
It was deprecated in Python 2.7 and 3.2. Use the *filter* argument instead.
-* The ``splitunc()`` function in the :mod:`ntpath` module was deprecated in
- Python 3.1, and has now been removed. Use the :func:`~os.path.splitdrive`
- function instead.
+* The :func:`!ntpath.splitunc` function was deprecated in
+ Python 3.1, and has now been removed. Use :func:`~os.path.splitdrive`
+ instead.
* :func:`collections.namedtuple` no longer supports the *verbose* parameter
or ``_source`` attribute which showed the generated source code for the