File tree 4 files changed +8
-5
lines changed
4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 166
166
# Deprecated function that was never documented:
167
167
('py:func' , 'getargspec' ),
168
168
('py:func' , 'inspect.getargspec' ),
169
+ # Undocumented modules that users shouldn't have to worry about
170
+ # (implementation details of `os.path`):
171
+ ('py:mod' , 'ntpath' ),
172
+ ('py:mod' , 'posixpath' ),
169
173
]
170
174
171
175
# Temporary undocumented names.
Original file line number Diff line number Diff line change @@ -306,7 +306,7 @@ Pure paths provide the following methods and properties:
306
306
.. attribute :: PurePath.pathmod
307
307
308
308
The implementation of the :mod: `os.path ` module used for low-level path
309
- operations: either `` posixpath `` or `` ntpath ` `.
309
+ operations: either :mod: ` posixpath ` or :mod: ` ntpath `.
310
310
311
311
.. versionadded :: 3.13
312
312
Original file line number Diff line number Diff line change @@ -72,7 +72,6 @@ Doc/library/multiprocessing.rst
72
72
Doc/library/multiprocessing.shared_memory.rst
73
73
Doc/library/numbers.rst
74
74
Doc/library/optparse.rst
75
- Doc/library/os.path.rst
76
75
Doc/library/os.rst
77
76
Doc/library/pickle.rst
78
77
Doc/library/pickletools.rst
Original file line number Diff line number Diff line change @@ -2144,9 +2144,9 @@ The following features and APIs have been removed from Python 3.7:
2144
2144
* Removed support of the *exclude * argument in :meth: `tarfile.TarFile.add `.
2145
2145
It was deprecated in Python 2.7 and 3.2. Use the *filter * argument instead.
2146
2146
2147
- * The `` splitunc() `` function in the :mod: ` ntpath ` module was deprecated in
2148
- Python 3.1, and has now been removed. Use the :func: `~os.path.splitdrive `
2149
- function instead.
2147
+ * The :func: ` ! ntpath.splitunc ` function was deprecated in
2148
+ Python 3.1, and has now been removed. Use :func: `~os.path.splitdrive `
2149
+ instead.
2150
2150
2151
2151
* :func: `collections.namedtuple ` no longer supports the *verbose * parameter
2152
2152
or ``_source `` attribute which showed the generated source code for the
You can’t perform that action at this time.
0 commit comments