diff options
author | Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> | 2024-04-15 19:18:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-15 19:18:21 (GMT) |
commit | eb0bfb5910e5135505d2259efa90e0095c422efe (patch) | |
tree | bdd0da11640d2d9454539149bf18df8ddc936e4f /Doc/faq | |
parent | 6dfb7e1f2787f2a97e730cd259dde2246b0ba164 (diff) | |
download | cpython-eb0bfb5910e5135505d2259efa90e0095c422efe.zip cpython-eb0bfb5910e5135505d2259efa90e0095c422efe.tar.gz cpython-eb0bfb5910e5135505d2259efa90e0095c422efe.tar.bz2 |
[3.12] Docs: add link roles with Sphinx extlinks (GH-117850) (#117910)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Doc/faq')
-rw-r--r-- | Doc/faq/library.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst index c699107..ac10a04 100644 --- a/Doc/faq/library.rst +++ b/Doc/faq/library.rst @@ -610,8 +610,7 @@ use ``p.read(n)``. ("ptys") instead of pipes. Or you can use a Python interface to Don Libes' "expect" library. A Python extension that interfaces to expect is called "expy" and available from https://expectpy.sourceforge.net. A pure Python - solution that works like expect is `pexpect - <https://pypi.org/project/pexpect/>`_. + solution that works like expect is :pypi:`pexpect`. How do I access the serial (RS232) port? @@ -619,7 +618,7 @@ How do I access the serial (RS232) port? For Win32, OSX, Linux, BSD, Jython, IronPython: - https://pypi.org/project/pyserial/ + :pypi:`pyserial` For Unix, see a Usenet post by Mitch Chapman: |