]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-1294959: Fix typo for new attribute platlibdir. (GH-18960)
authorRaúl Cumplido <raulcumplido@gmail.com>
Thu, 12 Mar 2020 14:38:19 +0000 (15:38 +0100)
committerGitHub <noreply@github.com>
Thu, 12 Mar 2020 14:38:19 +0000 (07:38 -0700)
Received email on the docs mailing list to fix a typo from `sys.platlitdir` which doesn't exist to the correct new attribute `sys.platlibdir`

Automerge-Triggered-By: @vstinner
Doc/whatsnew/3.9.rst
Misc/NEWS.d/next/Build/2020-02-06-18-08-25.bpo-1294959.AZPg4R.rst

index 9948539b01c5868ed4324264c829e76063e044f3..1434a9e2143d639be40d3fc077e9a7bb88c8dadd 100644 (file)
@@ -356,7 +356,7 @@ running.
 sys
 ---
 
-Add a new :attr:`sys.platlitdir` attribute: name of the platform-specific
+Add a new :attr:`sys.platlibdir` attribute: name of the platform-specific
 library directory. It is used to build the path of platform-specific dynamic
 libraries and the path of the standard library. It is equal to ``"lib"`` on
 most platforms.  On Fedora and SuSE, it is equal to ``"lib64"`` on 64-bit
@@ -407,7 +407,7 @@ Build and C API Changes
 =======================
 
 * Add ``--with-platlibdir`` option to the ``configure`` script: name of the
-  platform-specific library directory, stored in the new :attr:`sys.platlitdir`
+  platform-specific library directory, stored in the new :attr:`sys.platlibdir`
   attribute. See :attr:`sys.platlibdir` attribute for more information.
   (Contributed by Jan Matějek, Matěj Cepl, Charalampos Stratakis and Victor Stinner in :issue:`1294959`.)
 
index 1642e6929bcef4fd01024f07c40eec030ddb8e18..a90d6300f33bad89496d3e452c5ed23e7810de8b 100644 (file)
@@ -1,5 +1,5 @@
 Add ``--with-platlibdir`` option to the configure script: name of the
-platform-specific library directory, stored in the new :attr:`sys.platlitdir`
+platform-specific library directory, stored in the new :attr:`sys.platlibdir`
 attribute. It is used to build the path of platform-specific dynamic libraries
 and the path of the standard library. It is equal to ``"lib"`` on most
 platforms. On Fedora and SuSE, it is equal to ``"lib64"`` on 64-bit platforms.