Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
1fa7682c
Commit
1fa7682c
authored
Dec 06, 2010
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Note improvements to the docs.
parent
7c23ea2e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
10 deletions
+35
-10
Doc/library/itertools.rst
Doc/library/itertools.rst
+2
-2
Doc/library/re.rst
Doc/library/re.rst
+4
-2
Doc/whatsnew/3.2.rst
Doc/whatsnew/3.2.rst
+29
-6
No files found.
Doc/library/itertools.rst
View file @
1fa7682c
...
...
@@ -577,8 +577,8 @@ loops that truncate the stream.
.. _itertools-recipes:
Recipes
-------
Itertools
Recipes
-------
----------
This section shows recipes for creating an extended toolset using the existing
itertools as building blocks.
...
...
Doc/library/re.rst
View file @
1fa7682c
...
...
@@ -991,8 +991,10 @@ support the following methods and attributes:
The string passed to :meth:`~regex.match` or :meth:`~regex.search`.
Examples
--------
.. _re-examples:
Regular Expression Examples
---------------------------
Checking For a Pair
...
...
Doc/whatsnew/3.2.rst
View file @
1fa7682c
...
...
@@ -899,8 +899,28 @@ By default, tarfile uses ``'utf-8'`` encoding on Windows (instead of
systems.
.. IDLE
====
Documentation
=============
The documentation continues to be improved.
A table of quick links has been added to the top of lengthy sections such as
:ref:`built-in-funcs`. In the case of :mod:`itertools`, the links are
accompanied by tables of cheatsheet-style summaries to provide an overview and
memory jog without having to read all of the docs.
In some cases, the pure python source code can be helpful adjunct to the docs,
so now some modules feature quick links to the latest version of the source
code. For example, the :mod:`functools` module documentation has a quick link
at the top labeled :source:`functools Python source code <Lib/functools.py>`.
The docs now contain more examples and recipes. In particular, :mod:`re` module
has an extensive section, :ref:`re-examples`. Likewise, the :mod:`itertools`
module continues to be updated with new :ref:`itertools-recipes`.
IDLE
====
* The format menu now has an option to clean-up source files by strip trailing
whitespace (:issue:`5150`).
...
...
@@ -933,7 +953,10 @@ Changes to Python's build process and to the C API include:
* Hash values are now values of a new type, Py_hash_t, which is defined to
be the same size as a pointer. Previously they were of type long, which
on some 64-bit operating systems is still only 32 bits long.
on some 64-bit operating systems is still only 32 bits long. As a result
of this fix, :class:`set` and :class:`dict` can now hold more than ``2**32``
entries on builds with 64-bit pointers (previously, they could grow to
that size but their performance degraded catastrophically).
(Contributed by Benjamin Peterson; :issue:`9778`.)
...
...
@@ -947,8 +970,8 @@ require changes to your code:
* The :mod:`nntplib` module was reworked extensively, meaning that its APIs
are often incompatible with the 3.1 APIs.
* :class:`bytearray` objects can
not be used any more as filenames: convert them
to :class:`bytes`.
* :class:`bytearray` objects can
no longer be used as filenames; instead,
t
hey should be converted t
o :class:`bytes`.
* PyArg_Parse*() functions:
...
...
@@ -961,4 +984,4 @@ require changes to your code:
information and a less complicated signature for calling a destructor.
* The :func:`sys.setfilesystemencoding` function was removed because
it ha
s
a flawed design.
it ha
d
a flawed design.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment