File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -371,8 +371,9 @@ Glossary
371371 :term: `argument `.
372372
373373 Python 3000
374- Nickname for the Python 3.x release line (coined long ago when the
375- release of version 3 was something in the distant future.)
374+ Nickname for the Python 3.x release line (coined long ago when the release
375+ of version 3 was something in the distant future.) This is also
376+ abbreviated "Py3k".
376377
377378 Pythonic
378379 An idea or piece of code which closely follows the most common idioms of
Original file line number Diff line number Diff line change @@ -526,9 +526,9 @@ environment variable.
526526PEP 3101: Advanced String Formatting
527527=====================================================
528528
529- In Python 3.0, the `% ` operator is supplemented by a more powerful
530- string formatting method, :meth: `format `. Support for the
531- :meth: ` format ` method has been backported to Python 2.6.
529+ In Python 3.0, the `% ` operator is supplemented by a more powerful string
530+ formatting method, :meth: `format `. Support for the :meth: ` str.format ` method
531+ has been backported to Python 2.6.
532532
533533In 2.6, both 8-bit and Unicode strings have a `.format() ` method that
534534treats the string as a template and takes the arguments to be formatted.
@@ -650,8 +650,11 @@ the type's :meth:`__format__` method with the provided specifier::
650650
651651.. seealso ::
652652
653+ :ref: `formatstrings `
654+ The reference format fields.
655+
653656 :pep: `3101 ` - Advanced String Formatting
654- PEP written by Talin.
657+ PEP written by Talin. Implemented by Eric Smith.
655658
656659.. ======================================================================
657660
You can’t perform that action at this time.
0 commit comments