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
151f42fe
Commit
151f42fe
authored
Oct 08, 2008
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make all whatsnew docs accessible.
parent
f3776a17
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
28 additions
and
16 deletions
+28
-16
Doc/conf.py
Doc/conf.py
+0
-7
Doc/contents.rst
Doc/contents.rst
+1
-1
Doc/tools/sphinxext/indexcontent.html
Doc/tools/sphinxext/indexcontent.html
+1
-1
Doc/whatsnew/2.5.rst
Doc/whatsnew/2.5.rst
+5
-7
Doc/whatsnew/index.rst
Doc/whatsnew/index.rst
+21
-0
No files found.
Doc/conf.py
View file @
151f42fe
...
...
@@ -41,13 +41,6 @@ today_fmt = '%B %d, %Y'
# List of files that shouldn't be included in the build.
unused_docs
=
[
'whatsnew/2.0'
,
'whatsnew/2.1'
,
'whatsnew/2.2'
,
'whatsnew/2.3'
,
'whatsnew/2.4'
,
'whatsnew/2.5'
,
'whatsnew/2.6'
,
'maclib/scrap'
,
'library/xmllib'
,
'library/xml.etree'
,
...
...
Doc/contents.rst
View file @
151f42fe
...
...
@@ -4,7 +4,7 @@
.. toctree::
whatsnew/
2.7
.rst
whatsnew/
index
.rst
tutorial/index.rst
using/index.rst
reference/index.rst
...
...
Doc/tools/sphinxext/indexcontent.html
View file @
151f42fe
...
...
@@ -4,7 +4,7 @@
<table
class=
"contentstable"
align=
"center"
><tr>
<td
width=
"50%"
>
<p
class=
"biglink"
><a
class=
"biglink"
href=
"{{ pathto("
whatsnew
/"
+
version
)
}}"
>
What's new in Python {{ version }}?
</a><br/>
<span
class=
"linkdescr"
>
changes since previous major release
</span></p>
<span
class=
"linkdescr"
>
or
<a
href=
"{{ pathto("
whatsnew
/
index
")
}}"
>
all "What's new" documents
</a>
since 2.0
</span>
</span></p>
<p
class=
"biglink"
><a
class=
"biglink"
href=
"{{ pathto("
tutorial
/
index
")
}}"
>
Tutorial
</a><br/>
<span
class=
"linkdescr"
>
start here
</span></p>
<p
class=
"biglink"
><a
class=
"biglink"
href=
"{{ pathto("
using
/
index
")
}}"
>
Using Python
</a><br/>
...
...
Doc/whatsnew/2.5.rst
View file @
151f42fe
...
...
@@ -16,9 +16,9 @@ release schedule.
The changes in Python 2.5 are an interesting mix of language and library
improvements. The library enhancements will be more important to Python's user
community, I think, because several widely-useful packages were added. New
modules include ElementTree for XML processing (
section :ref:`module-
etree`),
the SQLite database module (
section :ref:`module-
sqlite`), and the :mod:`ctypes`
module for calling C functions
(section :ref:`module-ctypes`)
.
modules include ElementTree for XML processing (
:mod:`xml.
etree`),
the SQLite database module (
:mod:`
sqlite`), and the :mod:`ctypes`
module for calling C functions.
The language changes are of middling significance. Some pleasant new features
were added, but most of them aren't features that you'll use every day.
...
...
@@ -736,7 +736,7 @@ add a :keyword:`return` statement at the marked location. ::
# return False
.. _
module-contextlib
:
.. _
contextlibmod
:
The contextlib module
---------------------
...
...
@@ -1273,7 +1273,7 @@ complete list of changes, or look through the SVN logs for all the details.
(Contributed by Raymond Hettinger.)
* New module: The :mod:`contextlib` module contains helper functions for use
with the new ':keyword:`with`' statement. See section :ref:`
module-contextlib
`
with the new ':keyword:`with`' statement. See section :ref:`
contextlibmod
`
for more about this module.
* New module: The :mod:`cProfile` module is a C implementation of the existing
...
...
@@ -2272,8 +2272,6 @@ code:
.. ======================================================================
.. _acks:
Acknowledgements
================
...
...
Doc/whatsnew/index.rst
0 → 100644
View file @
151f42fe
.. _whatsnew-index:
######################
What's New in Python
######################
The "What's New in Python" series of essays takes tours through the most
important changes between major Python versions. They are a "must read" for
anyone wishing to stay up-to-date after a new release.
.. toctree::
:maxdepth: 1
2.7.rst
2.6.rst
2.5.rst
2.4.rst
2.3.rst
2.2.rst
2.1.rst
2.0.rst
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