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
06788c9f
Commit
06788c9f
authored
Jan 03, 2009
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a few remaining problems found by rstlint.
parent
d509788f
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
10 additions
and
10 deletions
+10
-10
Doc/extending/newtypes.rst
Doc/extending/newtypes.rst
+1
-1
Doc/howto/regex.rst
Doc/howto/regex.rst
+1
-1
Doc/library/bdb.rst
Doc/library/bdb.rst
+1
-1
Doc/library/urllib.request.rst
Doc/library/urllib.request.rst
+2
-2
Doc/library/xmlrpc.client.rst
Doc/library/xmlrpc.client.rst
+2
-2
Doc/reference/lexical_analysis.rst
Doc/reference/lexical_analysis.rst
+1
-1
Doc/reference/simple_stmts.rst
Doc/reference/simple_stmts.rst
+2
-2
No files found.
Doc/extending/newtypes.rst
View file @
06788c9f
Doc/howto/regex.rst
View file @
06788c9f
Doc/library/bdb.rst
View file @
06788c9f
Doc/library/urllib.request.rst
View file @
06788c9f
...
...
@@ -49,8 +49,8 @@ The :mod:`urllib.request` module defines the following functions:
The urlopen function from the previous version, Python 2.6 and earlier, of
the module urllib has been discontinued as urlopen can return the
file-object as the previous. The proxy handling, which in earlier was passed
as a dict parameter to urlopen can be availed by the use of
`ProxyHandler`
objects.
as a dict parameter to urlopen can be availed by the use of
:class:`ProxyHandler`
objects.
.. function:: install_opener(opener)
...
...
Doc/library/xmlrpc.client.rst
View file @
06788c9f
Doc/reference/lexical_analysis.rst
View file @
06788c9f
Doc/reference/simple_stmts.rst
View file @
06788c9f
...
...
@@ -871,8 +871,8 @@ The :keyword:`nonlocal` statement
nonlocal_stmt: "nonlocal" `identifier` ("," `identifier`)*
.. XXX add when implemented
: ["=" (`target_list` "=")+
`expression_list`
]
: | "nonlocal"
`identifier` `augop` `expression_list`
: ["=" (`target_list` "=")+
expression_list
]
: | "nonlocal"
identifier augop expression_list
The :keyword:`nonlocal` statement causes the listed identifiers to refer to
previously bound variables in the nearest enclosing scope. This is important
...
...
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