PEP 501: Fix footnotes (#2715)

This commit is contained in:
Hugo van Kemenade 2022-08-04 11:41:52 +03:00 committed by GitHub
parent b9a70c2c14
commit f74f32b030
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 26 deletions

View File

@ -554,43 +554,33 @@ Acknowledgements
References References
========== ==========
.. [#] %-formatting * `%-formatting
(https://docs.python.org/3/library/stdtypes.html#printf-style-string-formatting) <https://docs.python.org/3/library/stdtypes.html#printf-style-string-formatting>`_
.. [#] str.format * `str.format
(https://docs.python.org/3/library/string.html#formatstrings) <https://docs.python.org/3/library/string.html#formatstrings>`_
.. [#] string.Template documentation * `string.Template documentation
(https://docs.python.org/3/library/string.html#template-strings) <https://docs.python.org/3/library/string.html#template-strings>`_
.. [#] :pep:`215`: String Interpolation * :pep:`215`: String Interpolation
.. [#] :pep:`292`: Simpler String Substitutions * :pep:`292`: Simpler String Substitutions
.. [#] :pep:`3101`: Advanced String Formatting * :pep:`3101`: Advanced String Formatting
.. [#] :pep:`498`: Literal string formatting * :pep:`498`: Literal string formatting
.. [#] FormattableString and C# native string interpolation * `FormattableString and C# native string interpolation
(https://msdn.microsoft.com/en-us/library/dn961160.aspx) <https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/tokens/interpolated>`_
.. [#] IFormattable interface in C# (see remarks for globalization notes) * `IFormattable interface in C# (see remarks for globalization notes)
(https://msdn.microsoft.com/en-us/library/system.iformattable.aspx) <https://docs.microsoft.com/en-us/dotnet/api/system.iformattable>`_
.. [#] Running external commands in Julia * `Running external commands in Julia
(http://julia.readthedocs.org/en/latest/manual/running-external-programs/) <https://docs.julialang.org/en/v1/manual/running-external-programs/>`_
Copyright Copyright
========= =========
This document has been placed in the public domain. This document has been placed in the public domain.
..
Local Variables:
mode: indented-text
indent-tabs-mode: nil
sentence-end-double-space: t
fill-column: 70
coding: utf-8
End: