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
fdfaf0ab
Commit
fdfaf0ab
authored
Mar 05, 2012
by
Éric Araujo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use source reST role instead of file where it makes sense.
source generates a nifty link to the Mercurial web viewer.
parent
d3899e32
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
Doc/howto/cporting.rst
Doc/howto/cporting.rst
+2
-2
Doc/howto/regex.rst
Doc/howto/regex.rst
+2
-2
No files found.
Doc/howto/cporting.rst
View file @
fdfaf0ab
...
...
@@ -261,8 +261,8 @@ behave slightly differently from real Capsules. Specifically:
copy as you see fit.)
You can find :file:`capsulethunk.h` in the Python source distribution
in the :file:`Doc/includes` directory
. We also include it here for
your
reference; here is :file:`capsulethunk.h`
:
as :source:`Doc/includes/capsulethunk.h`
. We also include it here for
your
convenience
:
.. literalinclude:: ../includes/capsulethunk.h
...
...
Doc/howto/regex.rst
View file @
fdfaf0ab
...
...
@@ -360,7 +360,7 @@ and more.
You can learn about this by interactively experimenting with the :mod:`re`
module. If you have :mod:`tkinter` available, you may also want to look at
:
fil
e:`Tools/demo/redemo.py`, a demonstration program included with the
:
sourc
e:`Tools/demo/redemo.py`, a demonstration program included with the
Python distribution. It allows you to enter REs and strings, and displays
whether the RE matches or fails. :file:`redemo.py` can be quite useful when
trying to debug a complicated RE. Phil Schwartz's `Kodos
...
...
@@ -495,7 +495,7 @@ more convenient. If a program contains a lot of regular expressions, or re-uses
the same ones in several locations, then it might be worthwhile to collect all
the definitions in one place, in a section of code that compiles all the REs
ahead of time. To take an example from the standard library, here's an extract
from the now
deprecated :file:`xmllib.py`
::
from the now
-defunct Python 2 standard :mod:`xmllib` module
::
ref = re.compile( ... )
entityref = re.compile( ... )
...
...
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