mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
First few fixes in the new trees.
This commit is contained in:
@@ -14,5 +14,4 @@ To do after conversion
|
||||
* write "About these documents"
|
||||
* finish "Documenting Python"
|
||||
* extend copyright.rst
|
||||
* fix the "quadruple" index term
|
||||
* fix :file: and |version| in install
|
||||
* fix :file: and |version| in install
|
||||
|
||||
@@ -9,6 +9,12 @@ The modules described in this chapter provide a variety of specialized data
|
||||
types such as dates and times, fixed-type arrays, heap queues, synchronized
|
||||
queues, and sets.
|
||||
|
||||
Python also provides some built-in data types, in particular,
|
||||
:class:`dict`, :class:`list`, :class:`set` (which along with
|
||||
:class:`frozenset`, replaces the deprecated :mod:`sets` module), and
|
||||
:class:`tuple`. The :class:`str` class can be used to handle binary data
|
||||
and 8-bit text, and the :class:`unicode` class to handle Unicode text.
|
||||
|
||||
The following modules are documented in this chapter:
|
||||
|
||||
|
||||
|
||||
@@ -1307,7 +1307,6 @@ defined on mutable sequence types (where *x* is an arbitrary object):
|
||||
+------------------------------+--------------------------------+---------------------+
|
||||
|
||||
.. index::
|
||||
quadruple: operations on; mutable; sequence; types
|
||||
triple: operations on; sequence; types
|
||||
triple: operations on; list; type
|
||||
pair: subscript; assignment
|
||||
|
||||
@@ -6,7 +6,13 @@ String Services
|
||||
***************
|
||||
|
||||
The modules described in this chapter provide a wide range of string
|
||||
manipulation operations. Here's an overview:
|
||||
manipulation operations.
|
||||
|
||||
In addition, Python's built-in string classes support the sequence type
|
||||
methods described in the :ref:`typesseq` section, and also the
|
||||
string-specific methods described in the :ref:`string-methods` section.
|
||||
To output formatted strings use template strings or the ``%`` operator
|
||||
described in the :ref:`typesseq-strings` section.
|
||||
|
||||
|
||||
.. toctree::
|
||||
@@ -21,6 +27,4 @@ manipulation operations. Here's an overview:
|
||||
unicodedata.rst
|
||||
stringprep.rst
|
||||
fpformat.rst
|
||||
Information on the methods of string objects can be found in section
|
||||
:ref:`string-methods`, "String Methods."
|
||||
|
||||
|
||||
Reference in New Issue
Block a user