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
46aa472a
Commit
46aa472a
authored
Dec 06, 2018
by
Andre Delfino
Committed by
Serhiy Storchaka
Dec 06, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.7] Correct a couple of unbalanced parenthesis. (GH-10779). (GH-10963)
(cherry picked from commit
55f41e45
)
parent
358fc87f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
Doc/c-api/buffer.rst
Doc/c-api/buffer.rst
+1
-1
Doc/faq/extending.rst
Doc/faq/extending.rst
+1
-1
Doc/library/sysconfig.rst
Doc/library/sysconfig.rst
+1
-1
No files found.
Doc/c-api/buffer.rst
View file @
46aa472a
...
...
@@ -98,7 +98,7 @@ The new-style Py_buffer struct
suboffset value that it negative indicates that no de-referencing should
occur (striding in a contiguous memory block).
If all suboffsets are negative (i.e. no de-referencing is needed, then
If all suboffsets are negative (i.e. no de-referencing is needed
)
, then
this field must be NULL (the default value).
Here is a function that returns a pointer to the element in an N-D array
...
...
Doc/faq/extending.rst
View file @
46aa472a
...
...
@@ -286,7 +286,7 @@ However sometimes you have to run the embedded Python interpreter in the same
thread as your rest application and you can't allow the
:c:func:`PyRun_InteractiveLoop` to stop while waiting for user input. The one
solution then is to call :c:func:`PyParser_ParseString` and test for ``e.error``
equal to ``E_EOF``, which means the input is incomplete
)
. Here's a sample code
equal to ``E_EOF``, which means the input is incomplete. Here's a sample code
fragment, untested, inspired by code from Alex Farber::
#include <Python.h>
...
...
Doc/library/sysconfig.rst
View file @
46aa472a
...
...
@@ -188,7 +188,7 @@ Other functions
Windows will return one of:
- win-amd64 (64bit Windows on AMD64
(aka x86_64, Intel64, EM64T, etc
)
- win-amd64 (64bit Windows on AMD64
, aka x86_64, Intel64, and EM64T
)
- win-ia64 (64bit Windows on Itanium)
- win32 (all others - specifically, sys.platform is returned)
...
...
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