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
bd614085
Commit
bd614085
authored
Feb 05, 2008
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Convert external links to internal links. Fixes #2010.
parent
60225630
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
6 deletions
+9
-6
Doc/howto/advocacy.rst
Doc/howto/advocacy.rst
+1
-1
Doc/howto/curses.rst
Doc/howto/curses.rst
+2
-0
Doc/howto/regex.rst
Doc/howto/regex.rst
+2
-0
Doc/howto/unicode.rst
Doc/howto/unicode.rst
+1
-1
Doc/library/curses.rst
Doc/library/curses.rst
+2
-2
Doc/library/re.rst
Doc/library/re.rst
+1
-2
No files found.
Doc/howto/advocacy.rst
View file @
bd614085
...
...
@@ -265,7 +265,7 @@ the organizations that use Python.
**What are the restrictions on Python's use?**
They're practically nonexistent. Consult the :file:`Misc/COPYRIGHT` file in the
source distribution, or
http://www.python.org/doc/Copyright.html
for the full
source distribution, or
the section :ref:`history-and-license`
for the full
language, but it boils down to three conditions.
* You have to leave the copyright notice on the software; if you don't include
...
...
Doc/howto/curses.rst
View file @
bd614085
.. _curses-howto:
**********************************
Curses Programming with Python
**********************************
...
...
Doc/howto/regex.rst
View file @
bd614085
.. _regex-howto:
****************************
Regular Expression HOWTO
****************************
...
...
Doc/howto/unicode.rst
View file @
bd614085
...
...
@@ -277,7 +277,7 @@ Unicode result). The following examples show the differences::
Encodings are specified as strings containing the encoding's name. Python 2.4
comes with roughly 100 different encodings; see the Python Library Reference at
<http://docs.python.org/lib/standard-encodings.html>
for a list. Some encodings
:ref:`standard-encodings`
for a list. Some encodings
have multiple names; for example, 'latin-1', 'iso_8859_1' and '8859' are all
synonyms for the same encoding.
...
...
Doc/library/curses.rst
View file @
bd614085
...
...
@@ -48,9 +48,9 @@ Linux and the BSD variants of Unix.
Convenience function to ensure proper terminal setup and resetting on
application entry and exit.
`Curses Programming with Python <http://www.python.org/doc/howto/curses/curses.html>`_
:ref:`curses-howto`
Tutorial material on using curses with Python, by Andrew Kuchling and Eric
Raymond
, is available on the Python Web site
.
Raymond.
The :file:`Demo/curses/` directory in the Python source distribution contains
some example programs using the curses bindings provided by this module.
...
...
Doc/library/re.rst
View file @
bd614085
...
...
@@ -65,8 +65,7 @@ and implementation of regular expressions, consult the Friedl book referenced
above, or almost any textbook about compiler construction.
A brief explanation of the format of regular expressions follows. For further
information and a gentler presentation, consult the Regular Expression HOWTO,
accessible from http://www.python.org/doc/howto/.
information and a gentler presentation, consult the :ref:`regex-howto`.
Regular expressions can contain both special and ordinary characters. Most
ordinary characters, like ``'A'``, ``'a'``, or ``'0'``, are the simplest regular
...
...
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