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
0abb8b74
Commit
0abb8b74
authored
Apr 27, 2011
by
Éric Araujo
Browse files
Options
Browse Files
Download
Plain Diff
Merge 3.2
parents
7fb624fe
944d16c6
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
10 deletions
+4
-10
Doc/c-api/object.rst
Doc/c-api/object.rst
+0
-1
Doc/library/__future__.rst
Doc/library/__future__.rst
+1
-1
Doc/library/sys.rst
Doc/library/sys.rst
+2
-2
Doc/library/wsgiref.rst
Doc/library/wsgiref.rst
+1
-1
Lib/test/tracedmodules/__init__.py
Lib/test/tracedmodules/__init__.py
+0
-5
No files found.
Doc/c-api/object.rst
View file @
0abb8b74
...
...
@@ -258,7 +258,6 @@ is considered sufficient for this determination.
This is the equivalent of the Python expression ``hash(o)``.
.. versionchanged:: 3.2
The return type is now Py_hash_t. This is a signed integer the same size
as Py_ssize_t.
...
...
Doc/library/__future__.rst
View file @
0abb8b74
...
...
@@ -29,7 +29,7 @@ Each statement in :file:`__future__.py` is of the form::
where, normally, *OptionalRelease* is less than *MandatoryRelease*, and both are
5-tuples of the same form as
``sys.version_info`
`::
5-tuples of the same form as
:data:`sys.version_info
`::
(PY_MAJOR_VERSION, # the 2 in 2.1.0a3; an int
PY_MINOR_VERSION, # the 1; an int
...
...
Doc/library/sys.rst
View file @
0abb8b74
...
...
@@ -540,8 +540,8 @@ always available.
This is called ``hexversion`` since it only really looks meaningful when viewed
as the result of passing it to the built-in :func:`hex` function. The
``version_info`` value may be used for a more human-friendly encoding of th
e
same information.
:term:`struct sequence` :data:`sys.version_info` may be used for a mor
e
human-friendly encoding of the
same information.
The ``hexversion`` is a 32-bit number with the following layout
...
...
Doc/library/wsgiref.rst
View file @
0abb8b74
...
...
@@ -690,7 +690,7 @@ input, output, and error streams.
.. attribute:: BaseHandler.wsgi_file_wrapper
A ``wsgi.file_wrapper`` factory, or ``None``. The default value of this
attribute is the :class:`
FileWrapper` class from :mod:`wsgiref.util`
.
attribute is the :class:`
wsgiref.util.FileWrapper` class
.
.. method:: BaseHandler.sendfile()
...
...
Lib/test/tracedmodules/__init__.py
View file @
0abb8b74
...
...
@@ -2,8 +2,3 @@
that the exact location of functions in these modules is important, as trace.py
takes the real line numbers into account.
"""
"""This directory contains modules that help testing the trace.py module. Note
that the exact location of functions in these modules is important, as trace.py
takes the real line numbers into account.
"""
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