[Python-checkins] (no subject)

Raúl Cumplido webhook-mailer at python.org
Thu Mar 12 10:38:27 EDT 2020




To: python-checkins at python.org
Subject: bpo-1294959: Fix typo for new attribute platlibdir. (GH-18960)
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

https://github.com/python/cpython/commit/3c29675d8736cb1860f342d872ae41e342c6=
d383
commit: 3c29675d8736cb1860f342d872ae41e342c6d383
branch: master
author: Ra=C3=BAl Cumplido <raulcumplido at gmail.com>
committer: GitHub <noreply at github.com>
date: 2020-03-12T07:38:19-07:00
summary:

bpo-1294959: Fix typo for new attribute platlibdir. (GH-18960)



Received email on the docs mailing list to fix a typo from `sys.platlitdir` w=
hich doesn't exist to the correct new attribute `sys.platlibdir`

Automerge-Triggered-By: @vstinner

files:
M Doc/whatsnew/3.9.rst
M Misc/NEWS.d/next/Build/2020-02-06-18-08-25.bpo-1294959.AZPg4R.rst

diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index 9948539b01c58..1434a9e2143d6 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -356,7 +356,7 @@ running.
 sys
 ---
=20
-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
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
=20
 * Add ``--with-platlibdir`` option to the ``configure`` script: name of the
-  platform-specific library directory, stored in the new :attr:`sys.platlitd=
ir`
+  platform-specific library directory, stored in the new :attr:`sys.platlibd=
ir`
   attribute. See :attr:`sys.platlibdir` attribute for more information.
   (Contributed by Jan Mat=C4=9Bjek, Mat=C4=9Bj Cepl, Charalampos Stratakis a=
nd Victor Stinner in :issue:`1294959`.)
=20
diff --git a/Misc/NEWS.d/next/Build/2020-02-06-18-08-25.bpo-1294959.AZPg4R.rs=
t b/Misc/NEWS.d/next/Build/2020-02-06-18-08-25.bpo-1294959.AZPg4R.rst
index 1642e6929bcef..a90d6300f33ba 100644
--- a/Misc/NEWS.d/next/Build/2020-02-06-18-08-25.bpo-1294959.AZPg4R.rst
+++ b/Misc/NEWS.d/next/Build/2020-02-06-18-08-25.bpo-1294959.AZPg4R.rst
@@ -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 librari=
es
 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 platform=
s.



More information about the Python-checkins mailing list